Skip to content

Fix link to issues #44

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Oct 21, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ test_script:
- "cd empty"
# Make sure it's being imported from where we expect
- "python -c \"import os, unasync; print(os.path.dirname(unasync.__file__))\""
- "python -u -m pytest -W error -ra -v -s --cov=unasync --cov-config=../.coveragerc ../tests"
- "python -u -m pytest -ra -v -s --cov=unasync --cov-config=../.coveragerc ../tests"
- "codecov"
2 changes: 1 addition & 1 deletion ci/travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ else
mkdir empty
cd empty

pytest -W error -ra -v --cov=unasync --cov-config=../.coveragerc --verbose ../tests
pytest -ra -v --cov=unasync --cov-config=../.coveragerc --verbose ../tests

bash <(curl -s https://codecov.io/bash)
fi
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@ package = "unasync"
filename = "docs/source/history.rst"
directory = "newsfragments"
underlines = ["-", "~", "^"]
# COOKIECUTTER-TRIO-TODO: fill in the URL below to point to your issue tracker:
issue_format = "`#{issue} <https://github.com/ACCOUNT/REPO/issues/{issue}>`__"
issue_format = "`#{issue} <https://github.com/python-trio/unasync/issues/{issue}>`__"
4 changes: 4 additions & 0 deletions pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,7 @@ filterwarnings =
error
# python3.4 raises this when importing setuptools
ignore:The value of convert_charrefs will become True in 3.5.*:DeprecationWarning

# To ignore warning for deprecated imp module in setuptools
ignore:the imp module is deprecated.*:PendingDeprecationWarning
ignore:the imp module is deprecated.*:DeprecationWarning: