Skip to content

Commit

Permalink
Add tox.ini for typing_extensions (#733)
Browse files Browse the repository at this point in the history
It supports running its tests for all supported Python versions:
2.7 and 3.4-3.9, which are different from those for "typing" package
itself that is intended primarily for 2.7 and 3.4 where "typing"
module is not included in the standard library.
  • Loading branch information
east825 authored Jun 21, 2020
1 parent 6d287f0 commit 520d31b
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions typing_extensions/tox.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[tox]
envlist = py27, py34, py35, py36, py37, py38, py39

[testenv]
changedir = src_py3
commands = python -m unittest discover

[testenv:py27]
changedir = src_py2

0 comments on commit 520d31b

Please sign in to comment.