Skip to content

Commit

Permalink
Remove pytest-testmon (#330)
Browse files Browse the repository at this point in the history
Prefer to run all tests, for everything else we can use `pytest --lf`.
  • Loading branch information
jchristgit authored Dec 16, 2023
1 parent a5b87a1 commit 5ea90a2
Show file tree
Hide file tree
Showing 3 changed files with 141 additions and 32 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ migrations:
python src/manage.py makemigrations

test: migrate
pytest --testmon src || \
pytest src || \
if [ $$? = 5 ]; \
then exit 0; \
else exit $$?; \
Expand Down Expand Up @@ -46,7 +46,7 @@ clean-db:
python scripts/clean_db.py

clean-test:
rm -rf /tmp/ractf-linting.cache /tmp/ractf-linting.db .testmondata
rm -rf /tmp/ractf-linting.cache /tmp/ractf-linting.db

clean-dev-server:
docker-compose rm -sfv
Expand Down
Loading

0 comments on commit 5ea90a2

Please sign in to comment.