Skip to content

Commit

Permalink
Merge pull request #877 from microsoft/miguel/minor_doc_change
Browse files Browse the repository at this point in the history
Add time to test
  • Loading branch information
miguelgfierro authored Jul 26, 2019
2 parents 12b2f44 + e59c928 commit 5a9526a
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,17 @@ Smoke tests make sure that the system works and are executed just before the int

For executing the Python smoke tests:

pytest tests/smoke -m "smoke and not spark and not gpu"
pytest --durations=0 tests/smoke -m "smoke and not spark and not gpu"

For executing the Python GPU smoke tests:

pytest tests/smoke -m "smoke and not spark and gpu"
pytest --durations=0 tests/smoke -m "smoke and not spark and gpu"

For executing the PySpark smoke tests:

pytest tests/smoke -m "smoke and spark and not gpu"
pytest --durations=0 tests/smoke -m "smoke and spark and not gpu"

*NOTE: Adding `--durations=0` shows the computation time of all tests.*

</details>

Expand All @@ -76,15 +78,17 @@ Integration tests make sure that the program results are acceptable.

For executing the Python integration tests:

pytest tests/integration -m "integration and not spark and not gpu"
pytest --durations=0 tests/integration -m "integration and not spark and not gpu"

For executing the Python GPU integration tests:

pytest tests/integration -m "integration and not spark and gpu"
pytest --durations=0 tests/integration -m "integration and not spark and gpu"

For executing the PySpark integration tests:

pytest tests/integration -m "integration and spark and not gpu"
pytest --durations=0 tests/integration -m "integration and spark and not gpu"

*NOTE: Adding `--durations=0` shows the computation time of all tests.*

</details>

Expand Down

0 comments on commit 5a9526a

Please sign in to comment.