Skip to content

Commit 6ba1ce5

Browse files
committed
test
1 parent 9fc05dc commit 6ba1ce5

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

.github/workflows/CICD.yml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,17 @@ on:
66
jobs:
77
test:
88
runs-on: ubuntu-latest
9-
container: ghcr.io/geode-solutions/vtk:3.9-cpu
109
steps:
11-
- uses: actions/checkout@v3
12-
- name: Test
13-
run: |
14-
pip install pytest pytest-xprocess
15-
pip install -e .
16-
pytest
10+
- uses: actions/checkout@v4
11+
- uses: actions/setup-python@v5
12+
with:
13+
python-version: "3.9"
14+
- name: Test
15+
run: |
16+
pip install pytest pytest-xprocess
17+
pip install https://www.vtk.org/files/release/9.3/vtk_osmesa-9.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
18+
pip install -e .
19+
pytest
1720
1821
build:
1922
runs-on: ubuntu-latest

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ classifiers = [
2121

2222
[project.optional-dependencies]
2323
gpu = ["vtk == 9.*"]
24-
cpu = ["vtk @ https://www.vtk.org/files/release/9.3/vtk_osmesa-9.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"]
2524

2625
[project.urls]
2726
"Homepage" = "https://github.com/Geode-solutions/OpenGeodeWeb-Viewer"

0 commit comments

Comments
 (0)