diff --git a/Makefile b/Makefile index 9435433..70990e7 100644 --- a/Makefile +++ b/Makefile @@ -42,6 +42,9 @@ requirements.txt: venv/bin/pip-compile requirements.in test: venv install-dev . $(ACTIVATE) && python3 -m pytest --cov --cov-report xml:coverage.xml +test-partials: venv install-dev + SKIP_PARTIALS=False . $(ACTIVATE) && python3 -m pytest + coverage: venv install-dev printenv BENCHLING_ENTRY_ID . $(ACTIVATE) && python3 -m pytest --cov --cov-report html:coverage.html diff --git a/tests/test_entry.py b/tests/test_entry.py index f168dd7..b5190ec 100644 --- a/tests/test_entry.py +++ b/tests/test_entry.py @@ -92,8 +92,6 @@ def test_push(entry): readme = pkg["README.md"] assert readme assert readme() == "test_push" - print(entry.pkg_name, entry.registry) - assert False @pytest.mark.skipif(SKIP_PARTIALS, reason="Only do end-to-end test")