Skip to content

Commit

Permalink
Bring in PR 3631
Browse files Browse the repository at this point in the history
  • Loading branch information
benclifford committed Oct 10, 2024
2 parents feebc38 + 8356233 commit 7778c08
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
export PARSL_TEST_PRESERVE_NUM_RUNS=7
make test
ln -s .pytest/parsltest-current test_runinfo
ln -s pytest-parsl/parsltest-current test_runinfo
- name: Documentation checks
run: |
Expand All @@ -80,11 +80,11 @@ jobs:
# database manager log file or monitoring router log file. It would be better if
# the tests themselves failed immediately when there was a monitoring error, but
# in the absence of that, this is a dirty way to check.
bash -c '! grep ERROR .pytest/parsltest-current/runinfo*/*/database_manager.log'
bash -c '! grep ERROR .pytest/parsltest-current/runinfo*/*/monitoring_router.log'
bash -c '! grep ERROR pytest-parsl/parsltest-current/runinfo*/*/database_manager.log'
bash -c '! grep ERROR pytest-parsl/parsltest-current/runinfo*/*/monitoring_router.log'
# temporary; until test-matrixification
rm -f .pytest/parsltest-current test_runinfo
rm -f pytest-parsl/parsltest-current test_runinfo
- name: Checking parsl-visualize
run: |
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
name: runinfo-${{ matrix.python-version }}-${{ steps.job-info.outputs.as-ascii }}-${{ github.sha }}
path: |
runinfo/
.pytest/
pytest-parsl/
ci_job_info.txt
compression-level: 9

Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ coverage.xml
*.cover
.hypothesis/
/.pytest/
/pytest-parsl/

# Translations
*.mo
Expand Down
2 changes: 1 addition & 1 deletion parsl/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def _chmod(path: pathlib.Path, mode: int):

config = re.sub(r"[^A-z0-9_-]+", "_", pytestconfig.getoption('config')[0])
cwd = pathlib.Path(os.getcwd())
pytest_dir = cwd / ".pytest"
pytest_dir = cwd / "pytest-parsl"
pytest_dir.mkdir(mode=0o700, parents=True, exist_ok=True)

test_dir_prefix = "parsltest-"
Expand Down
2 changes: 1 addition & 1 deletion parsl/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Set module version.
"""
VERSION = '2024.10.07+desc-2024.10.09a'
VERSION = '2024.10.07+desc-2024.10.10a'

0 comments on commit 7778c08

Please sign in to comment.