Skip to content

Commit

Permalink
Update entrypoint.sh
Browse files Browse the repository at this point in the history
changed nosetests${PYTHON} to python${PYTHON} -m nose
  • Loading branch information
zoshua committed Feb 29, 2024
1 parent 47ac768 commit f993695
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ printf "#\n# Testing implementation..\n"
python${PYTHON} -u run_tests.py
printf "#\n# Testing caveats..\n"
python${PYTHON} build_caveats.py
nosetests${PYTHON} \
python${PYTHON} -m nose \
--verbose \
--with-doctest \
--with-process-isolation \
test_caveats.py
printf "#\n# Testing examples..\n"
nosetests${PYTHON} \
python${PYTHON} -m nose \
--verbose \
--with-process-isolation \
--with-doctest \
Expand Down

0 comments on commit f993695

Please sign in to comment.