Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
update jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Mar 5, 2019
1 parent 18fc26c commit 16b1626
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion .local.jenkins.lin.yml
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion .local.jenkins.win.yml
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -13,4 +13,4 @@ install:
before_script:
- python setup.py build_ext --inplace
script:
- python setup.py unittests
- python setup.py unittests -g ".*BENCH.*"
2 changes: 1 addition & 1 deletion appveyor.yml
Expand Up @@ -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"
Expand Down

0 comments on commit 16b1626

Please sign in to comment.