chore: fix ci commands

This commit is contained in:
Kyle Hornberg
2020-10-23 08:00:31 -05:00
parent 4d65050aad
commit c58b848f3a
7 changed files with 9 additions and 3 deletions
+1
View File
@@ -20,5 +20,6 @@ include requirements.txt
include .pyup.yml
include *.json
include *.sh
include *.toml
global-exclude *.py[cod] __pycache__ *.so *.dylib .github .github/*
+2 -1
View File
@@ -3,9 +3,10 @@ import re
from collections import defaultdict
import requests
from octokit_routes import specifications
from octokit import utils
from octokit.base import Base
from octokit_routes import specifications
page_regex = re.compile(r'[\?\&]page=(\d+)[_&=%+\w\d]*>; rel="(\w+)"')
+1
View File
@@ -7,6 +7,7 @@ from collections import defaultdict
import requests
from jose import jwt
from octokit import errors
from octokit import utils
+1
View File
@@ -4,6 +4,7 @@ from collections import namedtuple
import pytest
import requests
from octokit import Octokit
+1
View File
@@ -3,6 +3,7 @@ from collections import namedtuple
import pytest
import requests
from octokit import Octokit
from octokit import errors
+1
View File
@@ -1,4 +1,5 @@
import pytest
from octokit import errors
from octokit.base import Base
+2 -2
View File
@@ -49,11 +49,11 @@ deps =
readme-renderer
pygments
isort
black==19.3b0
black
skip_install = true
commands =
python setup.py check --strict --metadata --restructuredtext
check-manifest {toxinidir}
flake8 src tests setup.py
isort --verbose --check-only --diff --recursive src tests setup.py
isort --verbose --check-only --diff src tests setup.py
black -t py36 --check --verbose src tests setup.py