diff --git a/.github/workflows/pip_install_test.yml b/.github/workflows/pip_install_test.yml index d5d4211..ea923cd 100644 --- a/.github/workflows/pip_install_test.yml +++ b/.github/workflows/pip_install_test.yml @@ -33,14 +33,13 @@ jobs: run: | sleep 10m # wait 10 minutes for PyPI to update with the new release python -m pip install --upgrade pip - pip install numpy pip install shakenbreak[tests] # install only from PyPI - name: Test run: | - pytest tests # test everything - pytest --mpl tests/test_plotting.py # plotting tests - pytest --mpl tests/test_shakenbreak.py # plotting tests + pytest tests -vv # test everything + pytest --mpl tests/test_plotting.py -vv # plotting tests + pytest --mpl tests/test_shakenbreak.py -vv # plotting tests # pytest --mpl-generate-path=tests/remote_baseline tests/test_plotting.py # generate output plots # pytest --mpl-generate-path=tests/remote_baseline tests/test_shakenbreak.py # generate output plots diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c1d5675..872142d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -32,7 +32,6 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install numpy pip install -e .[tests] - name: Check package versions @@ -43,9 +42,9 @@ jobs: - name: Test run: | - pytest tests # test everything - pytest --mpl tests/test_plotting.py # plotting tests - pytest --mpl tests/test_shakenbreak.py # plotting tests + pytest tests -vv # test everything + pytest --mpl tests/test_plotting.py -vv # plotting tests + pytest --mpl tests/test_shakenbreak.py -vv # plotting tests # To generate the test plots: # pytest --mpl-generate-path=tests/remote_baseline tests/test_plotting.py # generate output plots