diff --git a/.github/workflows/test_ci.yml b/.github/workflows/test_ci.yml index 9b1e631..46cf3c6 100644 --- a/.github/workflows/test_ci.yml +++ b/.github/workflows/test_ci.yml @@ -34,5 +34,5 @@ jobs: env: CC_TEST_REPORTER_ID: ${{ secrets.CC_TESTING_KEY }} with: - coverageCommand: coverage run -m unittest test/main_tests.py && coverage xml + coverageCommand: sh coverage.sh debug: true diff --git a/coverage.sh b/coverage.sh new file mode 100644 index 0000000..1729ae4 --- /dev/null +++ b/coverage.sh @@ -0,0 +1,2 @@ +coverage run -m unittest test/main_tests.py +coverage xml \ No newline at end of file diff --git a/setup.py b/setup.py index e7918fe..7c6b0fc 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open("README.md", "r") as fh: setuptools.setup( name="datalite", # Replace with your own username - version="0.4.0", + version="0.4.1", author="Ege Ozkan", author_email="egeemirozkan24@gmail.com", description="A small package that binds dataclasses to an sqlite database", diff --git a/test.db b/test.db new file mode 100644 index 0000000..917b78b Binary files /dev/null and b/test.db differ