Skip to content
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

Make test_ids relative to workspace path not root dir #21682

Merged
merged 16 commits into from
Jul 28, 2023
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
Loading