Skip to content

Commit

Permalink
Merge pull request #2 from LilSpazJoekp/apply-async
Browse files Browse the repository at this point in the history
Apply async to functions
  • Loading branch information
LilSpazJoekp committed Jul 6, 2020
2 parents 31ee729 + da86a91 commit 93a0401
Show file tree
Hide file tree
Showing 212 changed files with 3,781 additions and 29,648 deletions.
10 changes: 5 additions & 5 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Code of Conduct

This project is released with a
[Contributor Code of Conduct](https://github.com/praw-dev/praw/blob/master/CODE_OF_CONDUCT.md). By
[Contributor Code of Conduct](https://github.com/praw-dev/asyncpraw/blob/master/CODE_OF_CONDUCT.md). By
participating in this project you agree to abide by its terms.

## Creating an Issue
Expand All @@ -13,7 +13,7 @@ participating in this project you agree to abide by its terms.
via Slack.

0. Please check the
[Unreleased](https://github.com/praw-dev/praw/blob/master/CHANGES.rst#unreleased)
[Unreleased](https://github.com/praw-dev/asyncpraw/blob/master/CHANGES.rst#unreleased)
section of the latest changelog before filing an issue as it is possible the
issue has already been resolved.

Expand All @@ -35,7 +35,7 @@ to you, it likely is not to the person asking the question.
0. Prior to creating a pull request run the `pre_push.py` script. This script
depends on the tools `black` `flake8`, `pylint`, `pydocstyle`, `sphinx` and `sphinx_rtd_theme`. They can
be installed via `pip install black flake8 pydocstyle pylint sphinx sphinx_rtd_theme` or via
`pip install praw[lint]`.
`pip install asyncpraw[lint]`.

0. Add yourself as a contributor to the ``AUTHORS.rst``.

Expand All @@ -47,7 +47,7 @@ to you, it likely is not to the person asking the question.
not require fetching data from Reddit, e.g., method argument validation,
should be saved as a unit test. Tests that hit Reddit's servers should be an
integration test and all network activity should be recorded via Betamax.
The required packages can be installed with `pip install praw[test]`.
The required packages can be installed with `pip install asyncpraw[test]`.

0. Feel free to check on the status of your pull request periodically by adding
a comment.
Expand Down Expand Up @@ -137,4 +137,4 @@ class Example(object):

### See Also

https://praw.readthedocs.io/en/latest/package_info/contributing.html
https://asyncpraw.readthedocs.io/en/latest/package_info/contributing.html
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Check documentation
run: python ./tools/check_documentation.py
- name: Run pydocstyle
run: pydocstyle praw
run: pydocstyle asyncpraw
- name: Run sphinx
run: sphinx-build -W --keep-going docs/ /tmp/foo
strategy:
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
- name: Check documentation
run: python ./tools/check_documentation.py
- name: Run pydocstyle
run: pydocstyle praw
run: pydocstyle asyncpraw
- name: Run sphinx
run: sphinx-build -W --keep-going docs/ /tmp/foo
strategy:
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
pip install .[test]
pip install https://github.com/bboe/coveralls-python/archive/github_actions.zip
- name: Test with pytest
run: coverage run --source praw --module pytest
run: coverage run --source asyncpraw --module pytest
- env:
COVERALLS_PARALLEL: true
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -134,7 +134,7 @@ jobs:
run: coverage report -m --fail-under=100
strategy:
matrix:
python-version: [3.5, 3.6, 3.7, 3.8]
python-version: [3.6, 3.7, 3.8]

test-network:
name: Test Network Request
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ formats:
- pdf
python:
pip_install: true
version: 3.5
version: 3.6
23 changes: 0 additions & 23 deletions .travis.yml

This file was deleted.

3 changes: 1 addition & 2 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
Maintainers
===========

- Bryce Boe <bbzbryce@gmail.com> `@bboe <https://github.com/bboe>`_
- Joe RH <jarhill0@gmail.com> `@jarhill0 <https://github.com/jarhill0>`_
- Joel Payne <lilspazjoekp@gmail.com> `@LilSpazJoekp <https://github.com/lilspazjoekp>`_


Documentation Contributors
Expand Down
Loading

0 comments on commit 93a0401

Please sign in to comment.