Skip to content

Commit

Permalink
Update python-app.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
YunusOE authored Jun 25, 2024
1 parent d82efdb commit e06dab9
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ jobs:
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest==8.2.2
- name: Print environment variables
run: printenv
- name: Print working directory
run: pwd
- name: Print current directory contents
Expand All @@ -38,5 +39,11 @@ jobs:
free -h
- name: Test with test cases
run: |
pytest -v Test_Cases/run_all_test_cases.py
pytest -vv Test_Cases/run_all_test_cases.py
#python DRAGen_testcases.py
- name: Upload core dump if tests fail
if: failure()
uses: actions/upload-artifact@v2
with:
name: core-dump
path: core.*

0 comments on commit e06dab9

Please sign in to comment.