Skip to content

Commit

Permalink
remove wrong hashes
Browse files Browse the repository at this point in the history
  • Loading branch information
frostming committed Sep 20, 2019
1 parent 48403ca commit b8e5f31
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 34 deletions.
5 changes: 1 addition & 4 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,7 @@ insert_final_newline = true
[*.md]
trim_trailing_whitespace = false

[*.toml]
indent_size = 2

[*.yaml]
[*.{toml,yaml,yml}]
indent_size = 2

# Makefiles always use tabs for indentation
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,12 @@ jobs:
flake8 --show-source src/ tests/
- name: Test with pytest
run: |
pytest -n auto --cov=passa
pytest -n auto --cov=passa --cov-report=xml
- name: Report code coverage
uses: codecov/[email protected]
with:
token: ${{secrets.CODECOV_TOKEN}}
file: coverage.xml

pack:
runs-on: ubuntu-latest
Expand Down
9 changes: 0 additions & 9 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 0 additions & 20 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -115,23 +115,3 @@ requires = ["setuptools", "wheel"]
ignore_missing_imports=true
follow_imports=skip
python_version=2.7

[coverage:run]
branch = True
parallel = True
source = src/passa

[coverage:report]
# Regexes for lines to exclude from consideration
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover

# Don't complain about missing debug-only code:
def __repr__

# Don't complain if tests don't hit defensive assertion code:
raise AssertionError
raise NotImplementedError
# Don't complain if non-runnable code isn't run:
if __name__ == .__main__.:

0 comments on commit b8e5f31

Please sign in to comment.