-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into jq/spec-update
- Loading branch information
Showing
7 changed files
with
259 additions
and
103 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
""" | ||
Executes verify-table-integrity.py as a unit test. | ||
""" | ||
import os | ||
import sys | ||
import subprocess | ||
|
||
import pytest | ||
|
||
@pytest.mark.skipif(sys.version_info[:2] != (3, 12), reason='Test only with a single version of python') | ||
def test_verify_table_integrity(): | ||
subprocess.check_output([sys.executable, os.path.join(os.path.dirname(__file__), | ||
os.path.pardir, | ||
'bin', | ||
'verify-table-integrity.py')]) |
Oops, something went wrong.