Skip to content

Commit

Permalink
Rename test in Makefile for the moment
Browse files Browse the repository at this point in the history
The coverage plugin stuff is failing because (I think)
wikitextprocessor doesn't have a page for it on its wiki page
like wiktextract does.

Temporarily rename `test` to `fulltest` so that coverage
can be generated locally and `quick` to `test` for github's actions.
  • Loading branch information
kristian-clausal committed Aug 8, 2023
1 parent d00324a commit c0b416b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Run "make test" to run tests (with coverage analysis left in ./htmlcov)
# Run "make clean" to remove automatically generated files

test:
fulltest:
rm -rf .coverage htmlcov
python -m nose2 --output-buffer --pretty-assert --with-coverage --coverage-report=html
quick:
test:
python -m nose2 --output-buffer --pretty-assert
clean:
rm -rf __pycache__
Expand Down

0 comments on commit c0b416b

Please sign in to comment.