Skip to content

Commit

Permalink
mark tests that need unix filesystem permissions enforced, which is n…
Browse files Browse the repository at this point in the history
…ot the case in environments running as root
  • Loading branch information
benclifford committed Jun 10, 2024
1 parent f5d1630 commit d7312d1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/parsl+flux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ jobs:
- name: Verify Parsl Installation
run: |
pytest parsl/tests/ -k "not cleannet and not issue363" --config parsl/tests/configs/local_threads.py --random-order --durations 10
pytest parsl/tests/ -k "not cleannet and not unix_filesystem_permissions_required" --config parsl/tests/configs/local_threads.py --random-order --durations 10
- name: Start Flux and Test Parsl with Flux
run: |
flux start pytest parsl/tests/test_flux.py --config local --random-order
- name: Test Parsl with Flux Config
run: |
flux start pytest parsl/tests/ -k "not cleannet and not issue363" --config parsl/tests/configs/flux_local.py --random-order --durations 10
flux start pytest parsl/tests/ -k "not cleannet and not unix_filesystem_permissions_required" --config parsl/tests/configs/flux_local.py --random-order --durations 10
1 change: 1 addition & 0 deletions parsl/tests/test_bash_apps/test_stdout.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ def test_bad_stdout_specs(spec):


@pytest.mark.issue3328
@pytest.mark.unix_filesystem_permissions_required
def test_bad_stderr_file():
"""Testing bad stderr file"""

Expand Down

0 comments on commit d7312d1

Please sign in to comment.