-
Notifications
You must be signed in to change notification settings - Fork 36
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 #11 from jpvantassel/dev
v0.5.1
- Loading branch information
Showing
16 changed files
with
325 additions
and
285 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 |
---|---|---|
@@ -1,16 +1,32 @@ | ||
version: 2 | ||
version: 2.1 | ||
|
||
orbs: | ||
coverage-reporter: codacy/[email protected] | ||
codecov: codecov/[email protected] | ||
|
||
workflows: | ||
version: 2 | ||
test: | ||
build: | ||
jobs: | ||
- test-3.6 | ||
- test-3.7 | ||
- test-3.8 | ||
# - test-3.9 | ||
- test-36: | ||
context: | ||
- docker | ||
- test-37: | ||
context: | ||
- docker | ||
- test-38: | ||
context: | ||
- docker | ||
# - test-39: | ||
# context: | ||
# - docker | ||
|
||
jobs: | ||
test-3.6: &test-template | ||
test-36: &test-template | ||
docker: | ||
- image: circleci/python:3.6.9 | ||
auth: | ||
username: jpvantassel | ||
password: $DOCKER_PASS | ||
working_directory: ~/repo | ||
steps: | ||
- checkout | ||
|
@@ -26,7 +42,7 @@ jobs: | |
. venv/bin/activate | ||
pip install numpy==1.18.5 | ||
- run: | ||
name: Install SigProPy | ||
name: Install sigpropy from source | ||
command: | | ||
. venv/bin/activate | ||
pip install git+ssh://[email protected]/jpvantassel/sigpropy.git | ||
|
@@ -47,27 +63,35 @@ jobs: | |
. venv/bin/activate | ||
mv test/.coverage test-results | ||
cd test-results | ||
coverage xml -o coverage.xml | ||
coverage xml -o cobertura.xml | ||
- store_test_results: | ||
path: test-results | ||
- store_artifacts: | ||
path: test-results | ||
- run: | ||
name: Call Codecov | ||
command: | | ||
. venv/bin/activate | ||
pip install codecov | ||
codecov | ||
- codecov/upload: | ||
file: test-results/cobertura.xml | ||
- coverage-reporter/send_report | ||
|
||
test-3.7: | ||
test-37: | ||
<<: *test-template | ||
docker: | ||
- image: circleci/python:3.7.5 | ||
test-3.8: | ||
auth: | ||
username: jpvantassel | ||
password: $DOCKER_PASS | ||
|
||
test-38: | ||
<<: *test-template | ||
docker: | ||
- image: circleci/python:3.8.0 | ||
# test-3.9: | ||
auth: | ||
username: jpvantassel | ||
password: $DOCKER_PASS | ||
|
||
# test-39: | ||
# <<: *test-template | ||
# docker: | ||
# - image: circleci/python:3.9.0 | ||
# auth: | ||
# username: jpvantassel | ||
# password: $DOCKER_PASS |
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,2 @@ | ||
docs/* linguist-documentation | ||
*.ipynb linguist-documentation |
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
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
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 |
---|---|---|
|
@@ -17,4 +17,4 @@ | |
|
||
"""Metadata for hvsrpy.""" | ||
|
||
__version__ = "0.5.0" | ||
__version__ = "0.5.1" |
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.