-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Upgrade pre-commit dependencies * Remove pyvcr * Add Makefile for compiling Python requirements * Rename codecov configuration file * Add flake8 configuration file * Update CI workflow * Replace TmpDir helper with pytest fixtures
- Loading branch information
1 parent
84759b3
commit 44b6775
Showing
51 changed files
with
1,480 additions
and
15,899 deletions.
There are no files selected for viewing
File renamed without changes.
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,16 @@ | ||
[flake8] | ||
exclude = .tox, .git, __pycache__, .cache, build, dist, *.pyc, *.egg-info, .eggs | ||
# Error codes: | ||
# - https://flake8.pycqa.org/en/latest/user/error-codes.html | ||
# - https://pycodestyle.pycqa.org/en/latest/intro.html#error-codes | ||
# - https://github.com/PyCQA/flake8-bugbear#list-of-warnings | ||
# | ||
# E203: whitespace before `,`, `;` or `:` | ||
# E402: module level import not at top of file | ||
# E501: line too long | ||
# W503: line break before binary operator | ||
ignore = | ||
E203, | ||
E402, | ||
E501, | ||
W503 |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
.DEFAULT_GOAL := help | ||
|
||
.PHONY: pip-compile pip-upgrade | ||
|
||
pip-compile: ## Compile pip requirements | ||
pip-compile --allow-unsafe --output-file=requirements.txt requirements.in | ||
pip-compile --allow-unsafe --output-file=requirements-dev.txt requirements-dev.in | ||
|
||
pip-upgrade: ## Upgrade pip requirements | ||
pip-compile --allow-unsafe --upgrade --output-file=requirements.txt requirements.in | ||
pip-compile --allow-unsafe --upgrade --output-file=requirements-dev.txt requirements-dev.in | ||
|
||
help: ## Print this help message | ||
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' |
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
38 changes: 0 additions & 38 deletions
38
fixtures/vcr_cassettes/test_atom_upload_deposit_success.yaml
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.