Skip to content

Commit

Permalink
Update tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
radumarias authored Jun 4, 2024
1 parent 8aa629b commit 4a25b07
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Run tests
run: |
source .env/bin/activate
pytest
./tests.sh
test_macos:
runs-on: macos-latest
Expand All @@ -45,15 +45,15 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m venv .env
source .env/bin/activate
python -m pip install --upgrade pip
pip install -r requirements.txt
maturin develop --release
maturin develop --release
- name: Run tests
run: |
source .env/bin/activate
pytest
./tests.sh
test_windows:
runs-on: windows-latest
Expand All @@ -69,12 +69,12 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m venv .env
.env\Scripts\activate
python -m pip install --upgrade pip
pip install -r requirements.txt
maturin develop --release
maturin develop --release
- name: Run tests
run: |
.env\Scripts\activate
pytest
tests.bat

0 comments on commit 4a25b07

Please sign in to comment.