Skip to content

Commit

Permalink
Fix condor testing (pip was missing) (#2246)
Browse files Browse the repository at this point in the history
  • Loading branch information
egede authored Jan 2, 2024
1 parent 7bce436 commit 5d6b202
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci_push_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,11 +160,13 @@ jobs:
ref: ${{ github.event.pull_request.head.sha }}
- name: Set up Python 3
run: |
dnf install -y python3.11
- name: Install dependencies
dnf install -y python3.11 python3.11-pip
/usr/bin/python3.11 -m venv venv
source venv/bin/activate
python -m pip install --upgrade pip setuptools wheel
- name: Install source
run: |
/usr/bin/python3.11 -m pip install --upgrade pip setuptools wheel
/usr/bin/python3.11 -m pip install -e .[dev]
python -m pip install -e .[dev]
- name: Start Condor
run: |
/start.sh > start.stdout &
Expand Down

0 comments on commit 5d6b202

Please sign in to comment.