Skip to content

Commit

Permalink
Update remote autodetection
Browse files Browse the repository at this point in the history
  • Loading branch information
vkarak committed Oct 23, 2024
1 parent 805b3dd commit 88e3eb8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-flux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:

- name: Install Reframe
run: |
apt-get update && apt-get install -y python3-pip curl
/bin/bash ./bootstrap.sh
apt-get update && apt-get install -y python3-pip
./bootstrap.sh
export PATH=$PWD/bin:$PATH
which reframe
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-schedulers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ jobs:
- name: Build Images
run: |
docker compose -f .github/pseudo-cluster/docker-compose.yml build
- name: Run Unittests with ${{ matrix.scheduler }} sceduler
- name: Run Unittests with ${{ matrix.scheduler }} scheduler
run: |
BACKEND=${{ matrix.scheduler }} docker compose -f .github/pseudo-cluster/docker-compose.yml up --abort-on-container-exit --exit-code-from frontend
3 changes: 2 additions & 1 deletion reframe/frontend/autodetect.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ def __enter__(self):
self._workdir = os.path.abspath(
tempfile.mkdtemp(prefix='rfm.', dir=self._prefix)
)
paths = ['bin/', 'reframe/', 'bootstrap.sh', 'requirements.txt']
paths = ['bin/', 'reframe/', 'tools/',
'bootstrap.sh', 'requirements.txt']
use_pip = False
try:
for p in paths:
Expand Down

0 comments on commit 88e3eb8

Please sign in to comment.