[bugfix] Fix error in fixture resolution when multiple fixtures of the same class are instantiated with different variables #1388
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Flux Scheduler | |
on: | |
pull_request: [] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
packages: read | |
strategy: | |
fail-fast: false | |
matrix: | |
container: ['fluxrm/flux-sched:focal'] | |
container: | |
image: ${{ matrix.container }} | |
options: "--platform=linux/amd64 --user root -it --init" | |
name: ${{ matrix.container }} | |
steps: | |
- name: Make Space | |
run: | | |
rm -rf /usr/share/dotnet | |
rm -rf /opt/ghc | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Reframe | |
run: | | |
apt-get update && apt-get install -y python3-pip | |
./bootstrap.sh | |
export PATH=$PWD/bin:$PATH | |
which reframe | |
# Any additional examples added here will be tested | |
- name: Start Flux and Run Test | |
run: | | |
export PATH=$PWD/bin:$PATH | |
which reframe | |
flux start reframe -c examples/howto/flux -C examples/howto/flux/settings.py -l | |
flux start reframe -c examples/howto/flux -C examples/howto/flux/settings.py -r | |
flux start python3 ./test_reframe.py --rfm-user-config=examples/howto/flux/settings.py -vvvv |