Skip to content

Commit

Permalink
Update entrypoint.sh - rolling back changes
Browse files Browse the repository at this point in the history
  • Loading branch information
zoshua authored Mar 1, 2024
1 parent d855ccf commit e23780c
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,21 @@ done

printf "#\n# Running tests in Python ${PYTHON}\n"
export NOSETESTS_BINARY=nosetests${PYTHON}

printf "#\n# Testing implementation..\n"
python${PYTHON} -u run_tests.py

printf "#\n# Testing caveats..\n"
python${PYTHON} build_caveats.py
python${PYTHON} -m nose2 \
nosetests${PYTHON} \
--verbose \
test_caveats

--with-doctest \
--with-process-isolation \
test_caveats.py
printf "#\n# Testing examples..\n"
cd examples
python${PYTHON} -m nose2 \
--verbose
cd ..
nosetests${PYTHON} \
--verbose \
--with-process-isolation \
--with-doctest \
--exe \
examples/*/*.py

printf Done

0 comments on commit e23780c

Please sign in to comment.