Skip to content

Commit

Permalink
TECH: Remove pytype (make room for future mypy)
Browse files Browse the repository at this point in the history
  • Loading branch information
nir0s committed Mar 9, 2021
1 parent ac3d4da commit cbaf3a8
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 13 deletions.
6 changes: 0 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ workflows:
- test-3.6
- test-3.5
- test-pylint
- test-pytype
- test-black

jobs:
Expand Down Expand Up @@ -59,11 +58,6 @@ jobs:
environment:
- TOX_ENV: pylint

test-pytype:
<<: *test-template
environment:
- TOX_ENV: pytype

test-black:
<<: *test-template
environment:
Expand Down
2 changes: 0 additions & 2 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
tox==3.23.0
pylint==2.7.2; python_version > '3.5'
pylint==2.6.1; python_version == '3.5'
pytype==2021.3.3; python_version > '3.5'
pytype==2020.10.08; python_version == '3.5'
pytest==6.2.2; python_version > '3.5'
pytest==6.1.2; python_version == '3.5'
pytest-cov==2.11.1
Expand Down
6 changes: 1 addition & 5 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
minversion = 3.15.0
envlist = pylint, pytype, black, py35, py36, py37
envlist = pylint, black, py35, py36, py37
skip_missing_interpreters = true

[testenv]
Expand All @@ -21,10 +21,6 @@ passenv = ProgramFiles APPVEYOR LOGNAME USER LNAME USERNAME HOME USERPROFILE
basepython = python3.7
commands = pylint wryte.py

[testenv:pytype]
basepython = python3.7
commands = pytype wryte.py

[testenv:black]
basepython = python3.7
commands = black . --check

0 comments on commit cbaf3a8

Please sign in to comment.