Skip to content

Commit

Permalink
Add rucion hidden deps
Browse files Browse the repository at this point in the history
  • Loading branch information
micafer committed Feb 6, 2025
1 parent 6c95179 commit 588e06e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@ on:

jobs:
test:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
python-version: 3.12.4
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install coverage
python -m pip install -r requirements.txt --ignore-installed
python -m pip install -r requirements.txt
- name: Test with unittest
run: python -m coverage run --source=. -m unittest discover -v -s test/unit/faassupervisor -p '*.py'
- name: Generate XML coverage report
Expand Down
1 change: 0 additions & 1 deletion faassupervisor/storage/providers/rucio.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
import tempfile

# Import classes to force pyinstaller to add them to the package
os.environ['RUCIO_CONFIG'] = '/dev/null'
from rucio.rse.protocols import posix, webdav, storm, ssh, rclone, xrootd
import dogpile.cache.backends.memory

Expand Down

0 comments on commit 588e06e

Please sign in to comment.