Skip to content

Commit 92963a1

Browse files
committed
Fix python gh action paths
1 parent 9814360 commit 92963a1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/validate-python.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ jobs:
1717
docker run -v ${PWD}:/cbioportal-core python:3.6 /bin/sh -c '
1818
cd cbioportal-core &&
1919
pip install -r requirements.txt &&
20-
export PYTHONPATH=/cbioportal-core/src/main/resources/scripts &&
21-
cd src/test/scripts/ &&
20+
export PYTHONPATH=/cbioportal-core/scripts &&
21+
cd tests/ &&
2222
python unit_tests_validate_data.py &&
2323
python system_tests_validate_data.py &&
2424
python system_tests_validate_studies.py'

0 commit comments

Comments
 (0)