Skip to content

Commit

Permalink
debugging workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
gautamkhanapuri authored Jun 5, 2024
1 parent 8bcc90f commit a7c8cda
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,18 @@ jobs:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
export PYTHONPATH=./division:./division/source:./division/tests
cd ./division
curdir=`pwd`
export PYTHONPATH=$curdir/division:$curdir/division/source:$curdir/division/tests
cd division
python -m venv div_test_env
source div_test_env/bin/activate
python -m pip install --upgrade pip
pip list
pip install nose2
pip list
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f requirements.txt ]; then
pip install -r requirements.txt
fi
cd tests
nose2 -v
if [[ $? -eq 0 ]]; then
Expand Down

0 comments on commit a7c8cda

Please sign in to comment.