diff --git a/.github/workflows/unix.yml b/.github/workflows/unix.yml index bdf97827..96ad577e 100644 --- a/.github/workflows/unix.yml +++ b/.github/workflows/unix.yml @@ -38,12 +38,15 @@ jobs: if [ "${{ matrix.python-version }}" != "3.8" ]; then conda install --yes cython numpy scipy h5py openpmd-api matplotlib jupyter pytest pyflakes python=${{ matrix.python-version }} python-wget else - conda install --yes cython numpy scipy h5py matplotlib jupyter pytest pyflakes python=${{ matrix.python-version }} python-wget + conda install --yes cython numpy scipy h5py matplotlib jupyter pytest pyflakes python=${{ matrix.python-version }} python-wget fi - shell: bash -eo pipefail -l {0} name: pyflakes - run: python -m pyflakes openpmd_viewer + run: | + if [ "${{ matrix.python-version }}" != "3.7" ]; then + python -m pyflakes openpmd_viewer + fi - shell: bash -eo pipefail -l {0} name: Test run: python setup.py test