-
Notifications
You must be signed in to change notification settings - Fork 370
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into s3logs
- Loading branch information
Showing
94 changed files
with
2,645 additions
and
2,660 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
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,10 +1,12 @@ | ||
# show coverage in CI status, not as a comment. | ||
# show coverage in CI status, not as a comment. | ||
comment: off | ||
fixes: | ||
- "*/site-packages/::" | ||
coverage: | ||
status: | ||
project: | ||
default: | ||
target: auto | ||
patch: | ||
default: | ||
target: 20% | ||
target: 20% |
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,3 +1,16 @@ | ||
[run] | ||
# this file comes from versioneer and we don't test it | ||
omit = */_version.py | ||
|
||
[paths] | ||
# This tells coverage how to combine results together or said differently | ||
# which files at different paths are actually the same file | ||
# documented at https://coverage.readthedocs.io/en/latest/config.html#paths | ||
# Yes, we list repo2docker twice here. This allows you to install repo2docker | ||
# with `pip install -e.` for local development and from the wheel (as done on | ||
# CI) and get `repo2docker/foo.py` as paths in the coverage report | ||
source = | ||
repo2docker | ||
repo2docker | ||
../repo2docker | ||
*/site-packages/repo2docker |
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,34 @@ | ||
name: Create a release on pypi.org | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
jobs: | ||
build-n-publish: | ||
runs-on: ubuntu-18.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: "Setup Python 3.8" | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: "3.8" | ||
|
||
- name: "Install dependencies" | ||
run: | | ||
pip install --upgrade setuptools pip | ||
pip install --upgrade -r dev-requirements.txt | ||
pip freeze | ||
- name: "Build distribution archives" | ||
run: | | ||
python setup.py sdist bdist_wheel | ||
# This step is only run when a new tag is pushed | ||
# all previous steps always run in order to exercise them | ||
- name: Publish distribution to PyPI | ||
if: startsWith(github.ref, 'refs/tags') | ||
uses: pypa/gh-action-pypi-publish@master | ||
with: | ||
password: ${{ secrets.PYPI_API_TOKEN }} |
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
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.