Skip to content

Commit a8447d8

Browse files
committed
Temporarily simply test process in coverage tests
Signed-off-by: Eric Kerfoot <17726042+ericspod@users.noreply.github.com>
1 parent 2f60913 commit a8447d8

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/setupapp.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,13 @@ jobs:
113113
run: |
114114
python -m pip list
115115
python -c 'import torch; print(torch.__version__); print(torch.rand(5,3))'
116-
BUILD_MONAI=0 ./runtests.sh --build --coverage --quick --unittests
117-
./runtests.sh --clean
118-
BUILD_MONAI=1 ./runtests.sh --build --coverage --quick --min
116+
BUILD_MONAI=0 python -m pip install --no-build-isolation -e .
117+
./runtests.sh --coverage --quick --unittests
118+
119+
# TODO: update installation process to allow testing with and without compiled libraries as intended here
120+
#BUILD_MONAI=0 ./runtests.sh --build --coverage --quick --unittests
121+
#./runtests.sh --clean
122+
#BUILD_MONAI=1 ./runtests.sh --build --coverage --quick --min
119123
coverage xml --ignore-errors
120124
- name: Upload coverage
121125
uses: codecov/codecov-action@v6

0 commit comments

Comments
 (0)