-
Notifications
You must be signed in to change notification settings - Fork 432
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
78 additions
and
438 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,6 +8,9 @@ | |
*.egg | ||
*.class | ||
|
||
# Poetry lock file | ||
poetry.lock | ||
|
||
# Unit test / coverage reports | ||
.tox/ | ||
.coverage | ||
|
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 was deleted.
Oops, something went wrong.
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,27 +1,17 @@ | ||
init: | ||
# Pin pipenv to 2018.10.13 because further releases are incompatible with | ||
# PyPy3. The issue was fixed in https://github.com/pypa/pipenv/pull/3322 | ||
# but no new version has been released yet. | ||
# Also pin pip to 18.x because with more recent versions, we'd need to | ||
# pass `--no-use-pep517`, which pipenv doesn't let us do. Cf. | ||
# https://github.com/pypa/pipenv/issues/3651 | ||
pip install --upgrade pip~=18.0 pipenv==2018.10.13 | ||
pipenv install --dev --skip-lock | ||
|
||
test: | ||
pipenv run tox -p auto | ||
poetry run tox -p auto | ||
|
||
ci: | ||
pipenv run pytest --cov=stripe | ||
poetry run pytest --cov=stripe | ||
|
||
coveralls: | ||
pipenv run coveralls | ||
poetry run coveralls | ||
|
||
fmt: | ||
pipenv run tox -e fmt | ||
poetry run tox -e fmt | ||
|
||
fmtcheck: | ||
pipenv run tox -e fmt -- --check --verbose | ||
poetry run tox -e fmt -- --check --verbose | ||
|
||
lint: | ||
pipenv run tox -e lint | ||
poetry run tox -e lint |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.