diff --git a/.circleci/config.yml b/.circleci/config.yml index ac5c39c..96a9343 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -72,7 +72,7 @@ jobs: name: run tests command: | . venv/bin/activate - python setup.py unittests + python setup.py unittests -g ".*BENCH.*" - run: name: wheel diff --git a/.local.jenkins.lin.yml b/.local.jenkins.lin.yml index c50466f..3ae4e8e 100644 --- a/.local.jenkins.lin.yml +++ b/.local.jenkins.lin.yml @@ -17,7 +17,9 @@ before_script: - $PYINT -u setup.py build_ext --inplace script: - - { CMD: "$PYINT -u setup.py unittests", NAME: "UT" } + - { CMD: "$PYINT -u setup.py unittests -g \".*BENCH.*\"", NAME: "UT" } + - { CMD: "$PYINT -u setup.py unittests -e \".*BENCH.*\" -g \".*ALL.*\"", NAME: "UT_BENCH" } + - { CMD: "$PYINT -u setup.py unittests -e \".*BENCH_ALL.*\"", NAME: "UT_BENCH_ALL", TIMEOUT: 3600 } after_script: - $PYINT -u setup.py bdist_wheel diff --git a/.local.jenkins.win.yml b/.local.jenkins.win.yml index 9619f9e..d179599 100644 --- a/.local.jenkins.win.yml +++ b/.local.jenkins.win.yml @@ -17,7 +17,9 @@ install: before_script: - python -u setup.py build_ext --inplace script: - - { CMD: "python -u setup.py unittests", NAME: "UT" } + - { CMD: "python -u setup.py unittests -g \".*BENCH.*\"", NAME: "UT" } + - { CMD: "python -u setup.py unittests -e \".*BENCH.*\" -g \".*ALL.*\"", NAME: "UT_BENCH" } + - { CMD: "python -u setup.py unittests -e \".*BENCH_ALL.*\"", NAME: "UT_BENCH_ALL", TIMEOUT: 3600 } after_script: - python -u setup.py bdist_wheel - if [ ${DIST} != "conda" and ${NAME} == "UT" ] then copy dist\*.whl {{root_path}}\..\..\local_pypi\local_pypi_server fi diff --git a/.travis.yml b/.travis.yml index b318e83..11e806d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,4 +13,4 @@ install: before_script: - python setup.py build_ext --inplace script: - - python setup.py unittests + - python setup.py unittests -g ".*BENCH.*" diff --git a/appveyor.yml b/appveyor.yml index 1f158e7..d57e556 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -31,7 +31,7 @@ before_test: - "%PYTHON%\\python -u setup.py build_ext --inplace" test_script: - - "%PYTHON%\\python -u setup.py unittests" + - "%PYTHON%\\python -u setup.py unittests -g \".*BENCH.*\"" after_test: - "%PYTHON%\\python -u setup.py bdist_wheel"