-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pre-kompile K definitions and specs for integration tests (#2417)
* Towards in-advance kompilation of definitions in tests * Allow a permanent prekompiled directory * Run less tests, for debugging purposes * Add test_kompile_targets * Add file lock * De-dupe targets in a smarter way * Don't prekompile definitions for failing tests * Add __eq__ override to Target * Use target name as cache key, add cache debug msgs * Actually read cache from disk * Revert "Run less tests, for debugging purposes" This reverts commit 5858d0a. * Remove debugging messages * Correct path stuff * Consolidate conftest.py * Add comments * Add pytest marker for prekompilation * Add more comments * Skip prekompiling in the same way as proving * Remove Target.__eq__, improve comments * Set Version: 1.0.546 * Skip kompilation cache test * Skip prekompilation test if no --kompiled-targets-dir is given * Code style * Add smtlib markers to Word operations * Revert "Add smtlib markers to Word operations" This reverts commit 0ab98ac. * Remove redundant parameter * Revert "Remove redundant parameter" This reverts commit 54c5c4a. * Set Version: 1.0.548 --------- Co-authored-by: devops <[email protected]>
- Loading branch information
Showing
5 changed files
with
92 additions
and
22 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
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.547" | ||
version = "1.0.548" | ||
description = "" | ||
authors = [ | ||
"Runtime Verification, Inc. <[email protected]>", | ||
|
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 |
---|---|---|
|
@@ -5,5 +5,4 @@ | |
if TYPE_CHECKING: | ||
from typing import Final | ||
|
||
|
||
VERSION: Final = '1.0.547' | ||
VERSION: Final = '1.0.548' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.0.547 | ||
1.0.548 |