diff options
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/test.sh | 2 | ||||
| -rwxr-xr-x | scripts/test_integration.sh | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/scripts/test.sh b/scripts/test.sh index a0659852..5aa1c764 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -2,5 +2,5 @@ set -euxo pipefail ./scripts/lint.sh -poetry run pytest tests/ -s --cov=isort/ --cov-report=term-missing ${@-} +poetry run pytest tests/unit/ -s --cov=isort/ --cov-report=term-missing ${@-} poetry run coverage html diff --git a/scripts/test_integration.sh b/scripts/test_integration.sh new file mode 100755 index 00000000..8bbcc5e7 --- /dev/null +++ b/scripts/test_integration.sh @@ -0,0 +1,4 @@ +#!/bin/bash +set -euxo pipefail + +poetry run pytest tests/integration/ -s |
