From 7f0db825328cfd3ab5fde2cbaa14540edcd9206d Mon Sep 17 00:00:00 2001 From: Ruslan Forostianov Date: Fri, 12 Apr 2024 06:47:19 +0200 Subject: [PATCH] Fix python gh action paths --- .github/workflows/validate-python.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/validate-python.yml b/.github/workflows/validate-python.yml index 058ccb65..8488ec39 100644 --- a/.github/workflows/validate-python.yml +++ b/.github/workflows/validate-python.yml @@ -17,8 +17,8 @@ jobs: docker run -v ${PWD}:/cbioportal-core python:3.6 /bin/sh -c ' cd cbioportal-core && pip install -r requirements.txt && - export PYTHONPATH=/cbioportal-core/src/main/resources/scripts && - cd src/test/scripts/ && + export PYTHONPATH=/scripts && + cd tests/ && python unit_tests_validate_data.py && python system_tests_validate_data.py && python system_tests_validate_studies.py'