Skip to content

Commit

Permalink
Update test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
AlxdrPolyakov committed Dec 14, 2023
1 parent 71fc1b5 commit 9623da7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ jobs:

- name: Testing (without coverage)
run: |
if [ "${{ runner.os }}" == "Linux" ]; then
if ($env:RUNNER_OS -eq "Linux") {
source venv/bin/activate
elif [ "${{ runner.os }}" == "Windows" ]; then
venv\Scripts\activate
fi
} elseif ($env:RUNNER_OS -eq "Windows") {
venv\Scripts\Activate
}
pytest tests/test_fit.py

0 comments on commit 9623da7

Please sign in to comment.