diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e479efc..c569716 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,5 +30,8 @@ jobs: - name: Testing (without coverage) run: | - source venv/bin/activate + if [ "${{ runner.os }}" == "Linux" ]; then + source venv/bin/activate + elif [ "${{ runner.os }}" == "Windows" ]; then + venv\Scripts\activate pytest tests/test_fit.py