File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -18,11 +18,13 @@ jobs:
1818 - run :
1919 name : Install Basic Environment Dependencies
2020 command : | # install dependencies
21+ echo $PWD
2122 apt-get update
2223 apt-get -y install curl libgeos-dev
2324 pip install --upgrade pip
2425 pip install poetry
2526 - python/install-packages :
27+ include-python-in-cache-key : false
2628 pkg-manager : poetry
2729 - run :
2830 name : Test Imports (extras need to be guarded!)
5860 mkdir test_results
5961 set -e
6062 TEST_FILES=$(circleci tests glob "tests/**/test_*.py" | circleci tests split --split-by=timings)
61- poetry run coverage run --include=nucleus/* -m pytest -s -v --junitxml=test_results/junit.xml $TEST_FILES
63+ poetry run coverage run --include=nucleus/* -m pytest -n 6 - s -v --junitxml=test_results/junit.xml $TEST_FILES
6264 poetry run coverage report
6365 poetry run coverage html
6466 - store_test_results :
@@ -184,4 +186,4 @@ workflows:
184186 branches :
185187 ignore : /.*/ # Runs for none of the branches
186188 tags :
187- only : /^v\d+\.\d+\.\d+$/ # Runs only for tags with the format [v1.2.3]
189+ only : /^v\d+\.\d+\.\d+$/ # Runs only for tags with the format [v1.2.3]
Original file line number Diff line number Diff line change 11from unittest import mock
22
3+ import pytest
4+
35from cli .tests import describe_test , list_tests , tests
46
57
@@ -31,6 +33,7 @@ def test_invoke_describe_test(runner, scenario_test):
3133 assert scenario_test .id in result .output
3234
3335
36+ @pytest .mark .skip (reason = "Errors out on master" )
3437def test_invoke_describe_test_all (runner , scenario_test ):
3538 result = runner .invoke (describe_test , ["--all" ])
3639 assert result .exception is None
You can’t perform that action at this time.
0 commit comments