Skip to content

Commit

Permalink
ci: Add Kubernetes and REANA dependencies to CI (#66)
Browse files Browse the repository at this point in the history
* Install 'kubernetes' and 'reana' extras in CI before running tests
* Restrict setuptools<58.0.0 to allow for installation of reana-client
   - c.f. reanahub/reana-client#558
  • Loading branch information
matthewfeickert authored Oct 9, 2021
1 parent 5e3ae5d commit 9337071
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,9 @@ jobs:
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip --quiet install --no-cache-dir .[develop,local]
# RE: setuptools c.f. https://github.com/reanahub/reana-client/issues/558
python -m pip install --upgrade pip "setuptools<58.0.0" wheel
python -m pip --quiet install --no-cache-dir .[develop,local,kubernetes,reana]
python -m pip list
- name: Run unit tests
Expand Down

0 comments on commit 9337071

Please sign in to comment.