File tree Expand file tree Collapse file tree 1 file changed +27
-2
lines changed Expand file tree Collapse file tree 1 file changed +27
-2
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ concurrency:
18
18
cancel-in-progress : true
19
19
20
20
jobs :
21
- client_tests :
21
+ object_retrieval :
22
22
runs-on : ubuntu-latest
23
23
timeout-minutes : 30
24
24
steps :
41
41
SIMVUE_TOKEN : ${{ secrets.SIMVUE_TOKEN }}
42
42
run : >-
43
43
python -m pytest -x
44
- -m client -c /dev/null -p no:warnings
44
+ -m object_retrieval -c /dev/null -p no:warnings
45
+ -n 0 -v -o cache_dir=${GITHUB_WORKSPACE}/.pytest-cache
46
+ object_removal :
47
+ runs-on : ubuntu-latest
48
+ timeout-minutes : 30
49
+ steps :
50
+ - uses : actions/checkout@v4
51
+ - name : Set up Python 3.13
52
+ uses : actions/setup-python@v5
53
+ with :
54
+ python-version : " 3.13"
55
+ - name : Install dependencies
56
+ run : |
57
+ python -m pip install poetry
58
+ poetry self add poetry-plugin-export
59
+ poetry export -f requirements.txt --with dev -o requirements.txt --all-extras
60
+ python -m pip install torch --index-url https://download.pytorch.org/whl/cpu
61
+ python -m pip install -r requirements.txt
62
+ python -m pip install .
63
+ - name : Test with pytest
64
+ env :
65
+ SIMVUE_URL : ${{ secrets.SIMVUE_URL }}
66
+ SIMVUE_TOKEN : ${{ secrets.SIMVUE_TOKEN }}
67
+ run : >-
68
+ python -m pytest -x
69
+ -m object_removal -c /dev/null -p no:warnings
45
70
-n 0 -v -o cache_dir=${GITHUB_WORKSPACE}/.pytest-cache
46
71
dispatch_tests :
47
72
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments