diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2020-06-28 21:10:28 -0400 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2020-06-28 22:39:47 -0400 |
| commit | b8abfd21934b8b109050696bd99c8fc823f901f4 (patch) | |
| tree | d617ee50d6e620497e45cfe09d07efe290f938a9 | |
| parent | 5f8eebf06792a32d955689daeb5679fc6d3d019e (diff) | |
| download | external_python_setuptools-b8abfd21934b8b109050696bd99c8fc823f901f4.tar.gz external_python_setuptools-b8abfd21934b8b109050696bd99c8fc823f901f4.tar.bz2 external_python_setuptools-b8abfd21934b8b109050696bd99c8fc823f901f4.zip | |
Use tox for tests
| -rw-r--r-- | conftest.py | 5 | ||||
| -rw-r--r-- | tox.ini | 8 |
2 files changed, 8 insertions, 5 deletions
diff --git a/conftest.py b/conftest.py deleted file mode 100644 index f0ec98e7..00000000 --- a/conftest.py +++ /dev/null @@ -1,5 +0,0 @@ -import sys -import os - -sys.path.insert(0, os.getcwd()) -__import__('distutils') diff --git a/tox.ini b/tox.ini new file mode 100644 index 00000000..1590e308 --- /dev/null +++ b/tox.ini @@ -0,0 +1,8 @@ +[testenv] +deps = + pytest +commands = + pytest {posargs} +setenv = + PYTHONPATH = {toxinidir} +skip_install = True |
