forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Refactor pytest discovery code in extension to use python #4035
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
d3r3kk
added a commit
to d3r3kk/vscode-python
that referenced
this issue
Jan 23, 2019
For microsoft#4035 - Handles stdout produced by pytest in the 4.0 and 4.1 series
8 tasks
|
d3r3kk
added a commit
to d3r3kk/vscode-python
that referenced
this issue
Feb 21, 2019
For microsoft#4035 - Handles stdout produced by pytest in the 4.0 and 4.1 series
d3r3kk
added a commit
to d3r3kk/vscode-python
that referenced
this issue
Mar 7, 2019
For microsoft#4035 - Handles stdout produced by pytest in the 4.0 and 4.1 series
9 tasks
4 tasks
ericsnowcurrently
added a commit
that referenced
this issue
Mar 18, 2019
(for #4035) We are moving to a relatively flat format that captures parent "nodes", in addition to tests. The new format looks like this: ```json [{ "rootid": ".", "root": "/x/y/z", "parents": [{ "id": "./test_spam.py", "kind": "file", "name": "test_spam.py", "parentid": "." }, { "id": "./test_spam.py::SpamTests", "kind": "suite", "name": "SpamTests", "parentid": "./test_spam.py" }, "tests" [{ "id": "./test_spam.py::test_all", "name": "test_all", "source": "test_spam.py:11", "markers": ["skip", "expected-failure"], "parentid": "./test_spam.py" }, { "id": "./test_spam.py::SpamTests::test_spam1", "name": "test_spam1", "source": "test_spam.py:23", "markers": ["skip"], "parentid": "./test_spam.py::SpamTests" }] ``` This also fixes a couple of bugs that I found while working on the change.
This was referenced Mar 18, 2019
DonJayamanne
added a commit
that referenced
this issue
Apr 11, 2019
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Recommendation is to ensure output of Python part of the code returns JSON format to the extension.
The text was updated successfully, but these errors were encountered: