-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Simplify testing, make failing lists explicit (#2082)
* tests/failing-symbolic.haskell-dry-run: remove old list * tests/failing.haskell: remove unused list * tests/slow.haskell: remove unused list * kevm-pyk/Makefile: standard variable names for controlling test harnesses * kevm-pyk/pyproject.toml: add pytest-timeout * tests/failing-symbolic.pyk: add failing-symbolic tests to pyk list too, sort * kevm-pyk/test_prove, tests/{failing,slow}: propogate failing test lists forward, remove slow test list * kevm-pyk/tests/test_prove: test lists are complete independently now * Makefile: separate out pyk/legacy proof steps * .github/test-pr: adjust PR job * Makefile: correct pytest invocations * kevm-pyk/pyproject.toml: update with pytest-timeout plugin * Makefile: remove direct use of PYTEST_PARALLEL * Makefile: remove explicit setting of PYTEST args in toplevel makefile * Set Version: 1.0.298 * Makefile, kevm-pyk/tests/test_prove: legacy => kprove * .github/test-pr: correct docker image name * .github/test-pr: simplify CI job a bit * .github/test-pr: factor out foundry tests into matrix too * .github/test-pr: typo * .github/test-pr: build kevm-pyk before building haskell backend * .github/: consistent ${GITHUB_SHA} => ${{ github.sha }} everywhere * .github/test-pr: unique name for each foundry testing backend container * .github/test-pr: more compact matrix specs * .github/test-pr: keep running tests in matrices if any fail * .github/test-pr: update stage timings, 1.5x runtime + 15min * Set Version: 1.0.299 * .github/test-pr: adjust timeouts * Set Version: 1.0.300 --------- Co-authored-by: devops <[email protected]>
- Loading branch information
Showing
16 changed files
with
240 additions
and
493 deletions.
There are no files selected for viewing
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
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
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
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" | |
|
||
[tool.poetry] | ||
name = "kevm-pyk" | ||
version = "1.0.299" | ||
version = "1.0.300" | ||
description = "" | ||
authors = [ | ||
"Runtime Verification, Inc. <[email protected]>", | ||
|
@@ -33,6 +33,7 @@ isort = "*" | |
mypy = "*" | ||
pep8-naming = "*" | ||
pytest = "*" | ||
pytest-timeout = "*" | ||
pytest-cov = "*" | ||
pytest-mock = "*" | ||
pytest-xdist = "*" | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,4 @@ | |
from typing import Final | ||
|
||
|
||
VERSION: Final = '1.0.299' | ||
VERSION: Final = '1.0.300' |
Oops, something went wrong.