File tree Expand file tree Collapse file tree 2 files changed +191
-232
lines changed
Expand file tree Collapse file tree 2 files changed +191
-232
lines changed Original file line number Diff line number Diff line change 2020 - name : Set up environment
2121 run : |
2222 apt-get update && apt-get install -y git openssh-client libstdc++6
23- mkdir -p /app/test_data
23+ mkdir -p /app/test_data /app/test_data/results
2424
2525 - name : Copy files
2626 run : |
6666 pip install black
6767 black --check /app/tests/
6868
69+ - name : Create test data directories
70+ run : |
71+ mkdir -p /app/test_data/results
72+ chmod -R 777 /app/test_data # Ensure write permissions
73+
6974 - name : Run tests
7075 run : |
71- pytest /app/tests/pytest_pipeline_check.py -v -s
76+ cd /app # Change to app directory where test_data exists
77+ pytest tests/pytest_pipeline_check.py -v -s
78+
79+ - name : Clean up test artifacts (optional)
80+ run : |
81+ rm -rf /app/test_data/* # Clean up after tests if needed
You can’t perform that action at this time.
0 commit comments