-
Notifications
You must be signed in to change notification settings - Fork 28
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 #24 from mattpodolak/v2
V2.0.0
- Loading branch information
Showing
37 changed files
with
66,113 additions
and
98,963 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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
version: 2.1 | ||
orbs: | ||
codecov: codecov/[email protected] | ||
jobs: | ||
build: | ||
docker: | ||
- image: circleci/python:3.6.4 | ||
steps: | ||
- checkout | ||
- run: | ||
name: install dependencies | ||
command: | | ||
sudo pip install --upgrade pip | ||
python setup.py sdist bdist_wheel | ||
sudo pip install coverage pytest praw vcrpy python-dotenv | ||
sudo pip install . | ||
- run: | ||
name: run tests | ||
command: | | ||
mkdir test-results | ||
coverage run --source=. -m pytest --junitxml=test-results/junit.xml | ||
coverage html | ||
coverage xml | ||
- codecov/upload: | ||
file: coverage.xml | ||
- store_test_results: | ||
path: test-results | ||
- store_artifacts: | ||
path: htmlcov | ||
workflows: | ||
build_test: | ||
jobs: | ||
- build |
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,5 @@ | ||
[run] | ||
omit = | ||
*/__init__.py | ||
setup.py | ||
tests/* |
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,8 +1,15 @@ | ||
pmaw.egg-info | ||
/dist | ||
/build | ||
/pmaw/utils/__pycache__ | ||
/pmaw/__pycache__ | ||
/examples/.ipynb_checkpoints | ||
/examples/cache | ||
pmaw.code-workspace | ||
/notebook-tests | ||
.pytest_cache | ||
.coverage | ||
.env | ||
pytest.ini | ||
pytest.log | ||
|
||
pmaw.code-workspace | ||
pmaw.egg-info | ||
|
||
/**/__pycache__ | ||
/**/cache |
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.