Skip to content

Commit

Permalink
Feature branch testing overflow bug fix (#21812)
Browse files Browse the repository at this point in the history
This merges in two PRs that were reverted because of a bug introduced
that caused subprocess overflow.
reverted PRs: #21667,
#21682

This now implements these two PRs allowing for absolute testIds and an
execObservable for the subprocess. This PR also adds a bug fix and
functional tests to ensure this doesn't happen again.

Since this PR is large, all items in it have already been reviewed as
they were merged into the feature branch.
  • Loading branch information
eleanorjboyd committed Aug 15, 2023
1 parent bd749aa commit b447bf1
Show file tree
Hide file tree
Showing 25 changed files with 1,993 additions and 425 deletions.
Empty file.
6 changes: 6 additions & 0 deletions pythonFiles/tests/pytestadapter/.data/root/tests/test_a.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.


def test_a_function(): # test_marker--test_a_function
assert True
6 changes: 6 additions & 0 deletions pythonFiles/tests/pytestadapter/.data/root/tests/test_b.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.


def test_b_function(): # test_marker--test_b_function
assert True
516 changes: 367 additions & 149 deletions pythonFiles/tests/pytestadapter/expected_discovery_test_output.py

Large diffs are not rendered by default.

Loading

0 comments on commit b447bf1

Please sign in to comment.