diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2020-06-28 20:21:35 -0400 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2020-06-28 20:55:14 -0400 |
| commit | 5f8eebf06792a32d955689daeb5679fc6d3d019e (patch) | |
| tree | ee7e6647b24628b8e640c0dadb61f818dfd4f402 | |
| parent | 781d42dffe2913f1a1f27128effa7198c27f569f (diff) | |
| download | external_python_setuptools-5f8eebf06792a32d955689daeb5679fc6d3d019e.tar.gz external_python_setuptools-5f8eebf06792a32d955689daeb5679fc6d3d019e.tar.bz2 external_python_setuptools-5f8eebf06792a32d955689daeb5679fc6d3d019e.zip | |
Add conftest so that tests can run under pytest
| -rw-r--r-- | conftest.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/conftest.py b/conftest.py new file mode 100644 index 00000000..f0ec98e7 --- /dev/null +++ b/conftest.py @@ -0,0 +1,5 @@ +import sys +import os + +sys.path.insert(0, os.getcwd()) +__import__('distutils') |
