lifewatch / pypam

Python Passive Acoustic Analysis tool for Passive Acoustic Monitoring (PAM)
GNU General Public License v3.0
41 stars 8 forks source link

CI command continues to be broken #51

Closed carueda closed 1 year ago

carueda commented 1 year ago

As seen below (against latest commit in master at the moment, but similarly for other branches), the unit testing trivially passes because the given run command:

        run:
          export POETRY_PYPAM_TEST_NO_PLOTS=make test          
          PYPAM_TEST_NO_PLOTS= make test

becomes a simple line:

export POETRY_PYPAM_TEST_NO_PLOTS=make test PYPAM_TEST_NO_PLOTS= make test

A possible fix:

        run: |
          export POETRY_PYPAM_TEST_NO_PLOTS=make test          
          PYPAM_TEST_NO_PLOTS= make test

image