Skip to content

Commit

Permalink
Update noxfile, test against Python 3.9 (#142)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mariatta committed Apr 7, 2021
1 parent 80d769d commit 629b283
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
python-version: ["3.6", "3.7", "3.8"]
python-version: ["3.6", "3.7", "3.8", "3.9"]

steps:
- uses: actions/checkout@v1
Expand Down
2 changes: 1 addition & 1 deletion gidgethub/abc.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ async def getiter(
async for item in self.getiter(
more, url_vars, accept=accept, jwt=jwt, oauth_token=oauth_token
):
yield item
yield item # pragma: nocover

async def post(
self,
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ def install_flit_dev_deps(session):
session.run("flit", "install", "--deps", "develop")


@nox.session(python=["3.6", "3.7", "3.8"])
@nox.session(python=["3.6", "3.7", "3.8", "3.9"])
def tests(session):
install_flit_dev_deps(session)
session.run("pytest", "--cov=gidgethub", "--cov-report=xml", "-n=auto", "tests")
Expand Down

0 comments on commit 629b283

Please sign in to comment.