@@ -26,14 +26,14 @@ passenv =
26
26
[testenv:fmt]
27
27
description = Apply coding style standards to code
28
28
commands =
29
- poetry install --only fmt --sync --no-cache
29
+ poetry install --only fmt
30
30
poetry run isort {[vars]all_path}
31
31
poetry run black {[vars]all_path}
32
32
33
33
[testenv:lint]
34
34
description = Check code against coding style standards
35
35
commands =
36
- poetry install --only fmt,lint --sync --no-cache
36
+ poetry install --only fmt,lint
37
37
poetry run codespell {[vars]all_path} pyproject.toml
38
38
poetry run flake8 {[vars]all_path}
39
39
poetry run isort --check-only --diff {[vars]all_path}
@@ -43,7 +43,7 @@ commands =
43
43
[testenv:unit]
44
44
description = Run unit tests
45
45
commands =
46
- poetry install --with unit --sync --no-cache
46
+ poetry install --with unit
47
47
poetry export -f requirements.txt -o requirements.txt
48
48
poetry run pytest -vv tests/unittest
49
49
@@ -53,7 +53,7 @@ setenv =
53
53
IE_TEST =1
54
54
KUBECONFIG ={env:HOME}/.kube/config
55
55
commands =
56
- poetry install --with integration --sync --no-cache
56
+ poetry install --with integration
57
57
poetry export -f requirements.txt -o requirements.txt
58
58
poetry run pytest -vv tests/integration
59
59
@@ -63,6 +63,6 @@ setenv =
63
63
IE_TEST =1
64
64
KUBECONFIG ={env:HOME}/.kube/config
65
65
commands =
66
- poetry install --with unit,integration --sync --no-cache
66
+ poetry install --with unit,integration
67
67
poetry export -f requirements.txt -o requirements.txt
68
68
poetry run pytest tests
0 commit comments