Skip to content

Commit 88e3eb8

Browse files
committed
Update remote autodetection
1 parent 805b3dd commit 88e3eb8

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/test-flux.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ jobs:
2828

2929
- name: Install Reframe
3030
run: |
31-
apt-get update && apt-get install -y python3-pip curl
32-
/bin/bash ./bootstrap.sh
31+
apt-get update && apt-get install -y python3-pip
32+
./bootstrap.sh
3333
export PATH=$PWD/bin:$PATH
3434
which reframe
3535

.github/workflows/test-schedulers.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ jobs:
1919
- name: Build Images
2020
run: |
2121
docker compose -f .github/pseudo-cluster/docker-compose.yml build
22-
- name: Run Unittests with ${{ matrix.scheduler }} sceduler
22+
- name: Run Unittests with ${{ matrix.scheduler }} scheduler
2323
run: |
2424
BACKEND=${{ matrix.scheduler }} docker compose -f .github/pseudo-cluster/docker-compose.yml up --abort-on-container-exit --exit-code-from frontend

reframe/frontend/autodetect.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ def __enter__(self):
4747
self._workdir = os.path.abspath(
4848
tempfile.mkdtemp(prefix='rfm.', dir=self._prefix)
4949
)
50-
paths = ['bin/', 'reframe/', 'bootstrap.sh', 'requirements.txt']
50+
paths = ['bin/', 'reframe/', 'tools/',
51+
'bootstrap.sh', 'requirements.txt']
5152
use_pip = False
5253
try:
5354
for p in paths:

0 commit comments

Comments
 (0)