Skip to content

Commit

Permalink
Run tests from py 3.10 in cd.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mgkwill committed Jul 17, 2023
1 parent 4205dd5 commit d86d89a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:

- name: Test artifact tar.gz
run: |
python3.9 -m venv artifact-test
python3 -m venv artifact-test
source artifact-test/bin/activate
artifact=$(ls | grep lava | grep tar)
pip install --no-input $artifact
Expand All @@ -63,7 +63,7 @@ jobs:
- name: Test artifact .whl
run: |
python3.9 -m venv artifact-test
python3 -m venv artifact-test
source artifact-test/bin/activate
artifact=$(ls | grep lava | grep whl)
pip install --no-input $artifact
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
mkdir tmp
cd tmp
cp ../lava* .
python3.9 -m venv artifact-unittest
python3 -m venv artifact-unittest
source artifact-unittest/bin/activate
pip install -U pip
pip install "nbconvert>=7.2.10,<7.3" pytest>=7.2.0 matplotlib>=3.5.1 ipykernel>=6.15.0 nbformat>=5.3.0
Expand All @@ -114,7 +114,7 @@ jobs:
mkdir tmp
cd tmp
cp ../lava* .
python3.9 -m venv artifact-unittest
python3 -m venv artifact-unittest
source artifact-unittest/bin/activate
pip install -U pip
pip install "nbconvert>=7.2.10,<7.3" pytest>=7.2.0 matplotlib>=3.5.1 ipykernel>=6.15.0 nbformat>=5.3.0
Expand Down

0 comments on commit d86d89a

Please sign in to comment.