This repository has been archived by the owner on May 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #63 from sernst/next
New Implementation version 1.0.0 release.
- Loading branch information
Showing
428 changed files
with
29,628 additions
and
3,236 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,4 @@ omit = | |
/docker-builder.py | ||
/launcher.py | ||
*.py.txt | ||
/docker/*.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
stages: | ||
- check | ||
- broadcast | ||
|
||
pytest-py35: | ||
image: python:3.5 | ||
stage: check | ||
script: | ||
- export PYTHONPATH="${PYTHONPATH}:$(pwd)" | ||
- pip install -r requirements.txt | ||
- > | ||
py.test | ||
--cov-report term | ||
--cov=cauldron | ||
. | ||
pytest-py36: | ||
image: python:3.6 | ||
stage: check | ||
script: | ||
- export PYTHONPATH="${PYTHONPATH}:$(pwd)" | ||
- pip install -r requirements.txt | ||
- > | ||
py.test | ||
--cov-report term | ||
--cov=cauldron | ||
. | ||
pytest-py37: | ||
image: python:3.7 | ||
stage: check | ||
coverage: '/^TOTAL.*\s+\d+\s+\d+\s+(\d+)%/' | ||
script: | ||
- export PYTHONPATH="${PYTHONPATH}:$(pwd)" | ||
- pip install -r requirements.txt | ||
- pip install codecov coveralls codacy-coverage | ||
- > | ||
py.test | ||
--cov-report xml:"$(pwd)/coverage.xml" | ||
--cov-report term | ||
--cov=cauldron | ||
. | ||
artifacts: | ||
paths: | ||
- .coverage | ||
- coverage.xml | ||
expire_in: 1 day | ||
|
||
pytest-py38: | ||
image: python:3.8 | ||
stage: check | ||
script: | ||
- export PYTHONPATH="${PYTHONPATH}:$(pwd)" | ||
- pip install -r requirements.txt | ||
- > | ||
py.test | ||
--cov-report term | ||
--cov=cauldron | ||
. | ||
codecov: | ||
image: python:3.7 | ||
stage: broadcast | ||
script: | ||
- pip install codecov | ||
- ls -la | ||
- codecov | ||
|
||
coveralls: | ||
image: python:3.7 | ||
stage: broadcast | ||
script: | ||
- pip install coveralls | ||
- ls -la | ||
- coveralls --verbose |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.