Skip to content

Commit

Permalink
Deploy Travis CI build 198 to GitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
travis-ci committed Dec 31, 2020
1 parent 0d8609d commit 8021cd2
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 39 deletions.
6 changes: 3 additions & 3 deletions Makefile
Expand Up @@ -131,21 +131,21 @@ test-backend-unit: install
@ ( mv $(FAILURES) $(FAILURES).bak || true ) > /dev/null 2>&1
$(RUN) pytest $(PYTHON_PACKAGES) tests/unit -m "not django_db"
@ ( mv $(FAILURES).bak $(FAILURES) || true ) > /dev/null 2>&1
$(RUN) coveragespace set unit
$(RUN) coveragespace update unit

.PHONY: test-backend-integration
test-backend-integration: install
@ if test -e $(FAILURES); then $(RUN) pytest tests/integration; fi
@ rm -rf $(FAILURES)
$(RUN) pytest tests/integration
$(RUN) coveragespace set integration
$(RUN) coveragespace update integration

.PHONY: test-backend-all
test-backend-all: install
@ if test -e $(FAILURES); then $(RUN) pytest $(PYTHON_PACKAGES) tests/unit tests/integration; fi
@ rm -rf $(FAILURES)
$(RUN) pytest $(PYTHON_PACKAGES) tests/unit tests/integration
$(RUN) coveragespace set overall
$(RUN) coveragespace update overall

.PHONY: test-frontend
test-frontend: test-frontend-unit
Expand Down
70 changes: 35 additions & 35 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -52,7 +52,7 @@ pytest-randomly = "*"
pytest-cov = "^2.8.0"
freezegun = "*"
coverage = "^5.0"
coveragespace = "=4.0b1"
coveragespace = "^4.0"

# Tooling
django-livereload-server = "*"
Expand Down

0 comments on commit 8021cd2

Please sign in to comment.