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

Test Explorer : Remove time from all nodes except the tests #5120

Closed
DonJayamanne opened this issue Apr 5, 2019 · 4 comments
Closed

Test Explorer : Remove time from all nodes except the tests #5120

DonJayamanne opened this issue Apr 5, 2019 · 4 comments
Assignees
Labels
area-testing feature-request Request for new features or functionality

Comments

@DonJayamanne
Copy link

When using pytest-xdist for parallel test execution, the total time taken is NOT the same as the sum total of all tests.

@ghost ghost added the triage-needed Needs assignment to the proper sub-team label Apr 5, 2019
@DonJayamanne DonJayamanne added area-testing bug Issue identified by VS Code Team member as probable bug labels Apr 5, 2019
@ghost ghost removed triage-needed Needs assignment to the proper sub-team labels Apr 5, 2019
@DonJayamanne
Copy link
Author

@luabud we'll need to prioritize this, hence adding a label of needs decision.

@DonJayamanne DonJayamanne added needs decision feature-request Request for new features or functionality and removed bug Issue identified by VS Code Team member as probable bug labels Apr 5, 2019
@DonJayamanne
Copy link
Author

DonJayamanne commented Apr 5, 2019

Here's what we do today:

  • We display a summary for each node in the tree
    • For folder (nodes) we display the sum total of all child nodes
    • For file (nodes) we display the sum total of all child nodes

Unfortunately

  • When running tests in parallel, the test runner is responsible for the tests, not us
  • We have no idea what ran in parallet and what didn'
  • So, its possible two files ran in parallel, and displaying a total time for a folder node makes no sense, as this information is not available (at the end of the day test frameworks/runners deal with tests not folders)
  • By the same token we don't know how long a test file took to complete, all we know is how long each individual test in the file took.
    • Again, displaying the total time taken for all tests in a file is wrong & not possible.
    • Tests can run in parallel, and we don't any information related to the parallelism
  • Same applies to a test suite...

Suggestion

  • We display the time taken to run tests ONLY for each test function (not a folder, not a file, & not for a suite)
  • We can display the total time taken to run the tests at the root folder, ONLY if there is ONE root folder.
    • This is because we only know how long ALL tests took
    • If we have tests in two folders at the top level, then we don't know how long each folder took...
  • This change will have to be made across the board, as we have no idea what tests ran in parallel and what didn't, & we shouldn't try to guess nor assume (unnecessary hacks).

@luabud /cc

So, the only change we need to make is simple:

  • No test duration for files, folders and suites
  • Add total duration for the root node if there is one root folder node, else no time summary.

@DonJayamanne
Copy link
Author

DonJayamanne commented Apr 5, 2019

Prescribed Solution:

  • Display the time only for the individual test
  • Do not display summary for parameterized test, suite, file, folder (i.e. do not calculate the total durations)
  • Modify src/client/testing/explorer/testTreeViewItem.ts accordingly (check the property testType to determine whether its a function or not.

@DonJayamanne DonJayamanne changed the title When using pytest-xdist with pytest the total duration in test explorer is wrong Test Explorer : Remove time from all nodes except the tests Apr 5, 2019
@DonJayamanne DonJayamanne removed their assignment Apr 8, 2019
@DonJayamanne DonJayamanne added this to the 2019 - May Sprint 11 milestone May 29, 2019
@karrtikr karrtikr self-assigned this Jun 3, 2019
@ericsnowcurrently
Copy link
Member

validated

@ghost ghost removed the needs PR label Jun 5, 2019
@lock lock bot locked as resolved and limited conversation to collaborators Jun 12, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
area-testing feature-request Request for new features or functionality
Projects
None yet
Development

No branches or pull requests

3 participants