Skip to content

Commit

Permalink
Measure test execution time
Browse files Browse the repository at this point in the history
  • Loading branch information
jlaneve authored Jun 5, 2023
1 parent 74e732f commit 47b52d5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -154,9 +154,9 @@ matrix.airflow.dependencies = [

[tool.hatch.envs.tests.scripts]
freeze = "pip freeze"
test = 'pytest -vv . -m "not integration"'
test-cov = 'pytest -vv --cov=cosmos --cov-report=term-missing --cov-report=xml . -m "not integration"'
test-integration = "pytest -vv --cov=cosmos --cov-report=term-missing --cov-report=xml -m integration"
test = 'pytest -vv --durations=0 . -m "not integration"'
test-cov = 'pytest -vv --cov=cosmos --cov-report=term-missing --cov-report=xml --durations=0 . -m "not integration"'
test-integration = "pytest -vv --cov=cosmos --cov-report=term-missing --cov-report=xml --durations=0 -m integration"

######################################
# DOCS
Expand Down

0 comments on commit 47b52d5

Please sign in to comment.