snowpark-checkpoints-configuration 0.1.2__tar.gz → 0.1.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (17) hide show
  1. {snowpark_checkpoints_configuration-0.1.2 → snowpark_checkpoints_configuration-0.1.3}/PKG-INFO +1 -1
  2. {snowpark_checkpoints_configuration-0.1.2 → snowpark_checkpoints_configuration-0.1.3}/pyproject.toml +1 -1
  3. {snowpark_checkpoints_configuration-0.1.2 → snowpark_checkpoints_configuration-0.1.3}/src/snowflake/snowpark_checkpoints_configuration/__version__.py +1 -1
  4. {snowpark_checkpoints_configuration-0.1.2 → snowpark_checkpoints_configuration-0.1.3}/.gitignore +0 -0
  5. {snowpark_checkpoints_configuration-0.1.2 → snowpark_checkpoints_configuration-0.1.3}/LICENSE +0 -0
  6. {snowpark_checkpoints_configuration-0.1.2 → snowpark_checkpoints_configuration-0.1.3}/README.md +0 -0
  7. {snowpark_checkpoints_configuration-0.1.2 → snowpark_checkpoints_configuration-0.1.3}/src/snowflake/snowpark_checkpoints_configuration/__init__.py +0 -0
  8. {snowpark_checkpoints_configuration-0.1.2 → snowpark_checkpoints_configuration-0.1.3}/src/snowflake/snowpark_checkpoints_configuration/checkpoint_metadata.py +0 -0
  9. {snowpark_checkpoints_configuration-0.1.2 → snowpark_checkpoints_configuration-0.1.3}/src/snowflake/snowpark_checkpoints_configuration/checkpoint_name_utils.py +0 -0
  10. {snowpark_checkpoints_configuration-0.1.2 → snowpark_checkpoints_configuration-0.1.3}/src/snowflake/snowpark_checkpoints_configuration/model/checkpoints.py +0 -0
  11. {snowpark_checkpoints_configuration-0.1.2 → snowpark_checkpoints_configuration-0.1.3}/src/snowflake/snowpark_checkpoints_configuration/singleton.py +0 -0
  12. {snowpark_checkpoints_configuration-0.1.2 → snowpark_checkpoints_configuration-0.1.3}/test/.coveragerc +0 -0
  13. {snowpark_checkpoints_configuration-0.1.2 → snowpark_checkpoints_configuration-0.1.3}/test/unit/invalid_checkpoint/checkpoints.json +0 -0
  14. {snowpark_checkpoints_configuration-0.1.2 → snowpark_checkpoints_configuration-0.1.3}/test/unit/test_checkpoint_metadata.py +0 -0
  15. {snowpark_checkpoints_configuration-0.1.2 → snowpark_checkpoints_configuration-0.1.3}/test/unit/test_checkpoint_name_utils.py +0 -0
  16. {snowpark_checkpoints_configuration-0.1.2 → snowpark_checkpoints_configuration-0.1.3}/test/unit/test_checkpoints.py +0 -0
  17. {snowpark_checkpoints_configuration-0.1.2 → snowpark_checkpoints_configuration-0.1.3}/test/unit/valid_checkpoint/checkpoints.json +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: snowpark-checkpoints-configuration
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: Migration tools for Snowpark
5
5
  Project-URL: Bug Tracker, https://github.com/snowflakedb/snowpark-checkpoints/issues
6
6
  Project-URL: Source code, https://github.com/snowflakedb/snowpark-checkpoints/
@@ -124,7 +124,7 @@ check = [
124
124
 
125
125
  [tool.hatch.envs.test.scripts]
126
126
  check = [
127
- 'pytest -v --junitxml=test/outcome/test-results.xml --cov=. --cov-config=test/.coveragerc --cov-report=xml:test/outcome/coverage-{matrix:python:{env:PYTHON_VERSION:unset}}.xml {args:test} --cov-report=term --cov-report=json:test/outcome/coverage-{matrix:python:{env:PYTHON_VERSION:unset}}.json',
127
+ 'pytest -vvv --junitxml=test/outcome/test-results.xml --cov=. --cov-branch --cov-config=test/.coveragerc --cov-report=xml:test/outcome/coverage-{matrix:python:{env:PYTHON_VERSION:unset}}.xml {args:test} --cov-report=term --cov-report=html:test/outcome/coverage-{matrix:python:{env:PYTHON_VERSION:unset}}.html --cov-report=json:test/outcome/coverage-{matrix:python:{env:PYTHON_VERSION:unset}}.json',
128
128
  ]
129
129
 
130
130
  coverage = [
@@ -13,4 +13,4 @@
13
13
  # See the License for the specific language governing permissions and
14
14
  # limitations under the License.
15
15
 
16
- __version__ = "0.1.2"
16
+ __version__ = "0.1.3"