-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from rwx-research/py37-support
Adds support for python 3.7
- Loading branch information
Showing
27 changed files
with
728 additions
and
48 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
46 changes: 46 additions & 0 deletions
46
integration_tests/multifile/out/py37/pytest7.0.*/manifest.json
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,46 @@ | ||
{ | ||
"manifest": { | ||
"members": [ | ||
{ | ||
"type": "test", | ||
"id": "test_file1.py::test_1", | ||
"tags": [], | ||
"meta": {} | ||
}, | ||
{ | ||
"type": "test", | ||
"id": "test_file1.py::test_2", | ||
"tags": [], | ||
"meta": {} | ||
}, | ||
{ | ||
"type": "test", | ||
"id": "test_file2.py::test_3", | ||
"tags": [], | ||
"meta": {} | ||
}, | ||
{ | ||
"type": "test", | ||
"id": "test_file2.py::test_4", | ||
"tags": [], | ||
"meta": {} | ||
} | ||
], | ||
"init_meta": {} | ||
}, | ||
"native_runner_protocol": { | ||
"type": "abq_protocol_version", | ||
"major": 0, | ||
"minor": 2 | ||
}, | ||
"native_runner_specification": { | ||
"type": "abq_native_runner_specification", | ||
"name": "pytest_abq", | ||
"version": "7.2.2", | ||
"test_framework": "pytest", | ||
"test_framework_version": "7.0.1", | ||
"language": "Python", | ||
"language_version": "3.7", | ||
"host": "cpython-37" | ||
} | ||
} |
126 changes: 126 additions & 0 deletions
126
integration_tests/multifile/out/py37/pytest7.0.*/results.json
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,126 @@ | ||
[ | ||
[ | ||
{ | ||
"source": { | ||
"runner": [ | ||
0, | ||
1 | ||
], | ||
"is_singleton": true, | ||
"has_stdout_reporters": false | ||
}, | ||
"result": { | ||
"status": "Success", | ||
"id": "test_file1.py::test_1", | ||
"display_name": "test_file1.py::test_1", | ||
"output": "", | ||
"runtime": { | ||
"Nanoseconds": "STRIPPED" | ||
}, | ||
"meta": {}, | ||
"location": { | ||
"file": "test_file1.py", | ||
"line": 2, | ||
"column": null | ||
}, | ||
"stderr": "STRIPPED", | ||
"stdout": "STRIPPED", | ||
"timestamp": "STRIPPED" | ||
} | ||
} | ||
], | ||
[ | ||
{ | ||
"source": { | ||
"runner": [ | ||
0, | ||
1 | ||
], | ||
"is_singleton": true, | ||
"has_stdout_reporters": false | ||
}, | ||
"result": { | ||
"status": { | ||
"Failure": {} | ||
}, | ||
"id": "test_file1.py::test_2", | ||
"display_name": "test_file1.py::test_2", | ||
"output": "def test_2():\n> assert 1 == 2\nE assert 1 == 2\n\ntest_file1.py:7: AssertionError", | ||
"runtime": { | ||
"Nanoseconds": "STRIPPED" | ||
}, | ||
"meta": {}, | ||
"location": { | ||
"file": "test_file1.py", | ||
"line": 5, | ||
"column": null | ||
}, | ||
"stderr": "STRIPPED", | ||
"stdout": "STRIPPED", | ||
"timestamp": "STRIPPED" | ||
} | ||
} | ||
], | ||
[ | ||
{ | ||
"source": { | ||
"runner": [ | ||
0, | ||
1 | ||
], | ||
"is_singleton": true, | ||
"has_stdout_reporters": false | ||
}, | ||
"result": { | ||
"status": "Success", | ||
"id": "test_file2.py::test_3", | ||
"display_name": "test_file2.py::test_3", | ||
"output": "", | ||
"runtime": { | ||
"Nanoseconds": "STRIPPED" | ||
}, | ||
"meta": {}, | ||
"location": { | ||
"file": "test_file2.py", | ||
"line": 2, | ||
"column": null | ||
}, | ||
"stderr": "STRIPPED", | ||
"stdout": "STRIPPED", | ||
"timestamp": "STRIPPED" | ||
} | ||
} | ||
], | ||
[ | ||
{ | ||
"source": { | ||
"runner": [ | ||
0, | ||
1 | ||
], | ||
"is_singleton": true, | ||
"has_stdout_reporters": false | ||
}, | ||
"result": { | ||
"status": { | ||
"Failure": {} | ||
}, | ||
"id": "test_file2.py::test_4", | ||
"display_name": "test_file2.py::test_4", | ||
"output": "def test_4():\n> assert 1 == 2\nE assert 1 == 2\n\ntest_file2.py:7: AssertionError", | ||
"runtime": { | ||
"Nanoseconds": "STRIPPED" | ||
}, | ||
"meta": {}, | ||
"location": { | ||
"file": "test_file2.py", | ||
"line": 5, | ||
"column": null | ||
}, | ||
"stderr": "STRIPPED", | ||
"stdout": "STRIPPED", | ||
"timestamp": "STRIPPED" | ||
} | ||
} | ||
] | ||
] |
46 changes: 46 additions & 0 deletions
46
integration_tests/multifile/out/py37/pytest7.2.*/manifest.json
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,46 @@ | ||
{ | ||
"manifest": { | ||
"members": [ | ||
{ | ||
"type": "test", | ||
"id": "test_file1.py::test_1", | ||
"tags": [], | ||
"meta": {} | ||
}, | ||
{ | ||
"type": "test", | ||
"id": "test_file1.py::test_2", | ||
"tags": [], | ||
"meta": {} | ||
}, | ||
{ | ||
"type": "test", | ||
"id": "test_file2.py::test_3", | ||
"tags": [], | ||
"meta": {} | ||
}, | ||
{ | ||
"type": "test", | ||
"id": "test_file2.py::test_4", | ||
"tags": [], | ||
"meta": {} | ||
} | ||
], | ||
"init_meta": {} | ||
}, | ||
"native_runner_protocol": { | ||
"type": "abq_protocol_version", | ||
"major": 0, | ||
"minor": 2 | ||
}, | ||
"native_runner_specification": { | ||
"type": "abq_native_runner_specification", | ||
"name": "pytest_abq", | ||
"version": "7.2.2", | ||
"test_framework": "pytest", | ||
"test_framework_version": "7.2.2", | ||
"language": "Python", | ||
"language_version": "3.7", | ||
"host": "cpython-37" | ||
} | ||
} |
Oops, something went wrong.