Skip to content

Commit

Permalink
* update
Browse files Browse the repository at this point in the history
  • Loading branch information
jdhughes-usgs committed Jun 18, 2024
1 parent f1b7a8b commit b3da2dc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 13 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,12 +166,6 @@ jobs:
if: runner.os == 'Windows'
run: choco install make

- name: Print current directory
run: |
pwd
ls -h .
ls -h autotest/
- name: Run scheduled tests
run: |
pixi run autotest-schedule
Expand All @@ -181,7 +175,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: failed-schedule-${{ matrix.os }}-${{ matrix.FC }}-${{ matrix.FC_V }}
path: ./autotest/.failed
path: autotest/.failed

- name: Print coverage report before upload
run: |
Expand Down
6 changes: 3 additions & 3 deletions autotest/test_cli_cmds.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def test_make_program(function_tmpdir, target: str) -> None:
"make-program",
target,
"--appdir",
str(function_tmpdir),
".",
"--verbose",
]
run_cli_cmd(cmd)
Expand All @@ -68,7 +68,7 @@ def test_make_program_double(function_tmpdir) -> None:
"--double",
"--verbose",
"--appdir",
str(function_tmpdir),
".",
]
run_cli_cmd(cmd)

Expand All @@ -81,7 +81,7 @@ def test_make_program_all(module_tmpdir) -> None:
"make-program",
":",
"--appdir",
str(module_tmpdir),
".",
"--verbose",
]
run_cli_cmd(cmd)
Expand Down
3 changes: 0 additions & 3 deletions pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,3 @@ coverage-report = { cmd = "coverage report", cwd = "autotest"}
# release
update-version = { cmd = "python scripts/update_version.py -v"}
create-codejson = { cmd = "make-code-json" }

[target.win-64.tasks]
autotest-schedule = { cmd = "pytest -v -m='schedule' --durations=0 --cov=pymake --cov-report=xml --basetemp=$(pwd)/temp --keep-failed .failed", cwd = "autotest" }

0 comments on commit b3da2dc

Please sign in to comment.