diff options
author | Ryan Huber <rhuber@gmail.com> | 2015-11-16 20:08:52 +0000 |
---|---|---|
committer | Ryan Huber <rhuber@gmail.com> | 2015-11-16 20:08:52 +0000 |
commit | 512133c74a08865d07ae6b1b079ef5f43b42e164 (patch) | |
tree | 7b3cceb5b5be0ac722fb7a1cfec397e23b9a7978 /_pytest/conftest.py | |
parent | 8cbc89202856d8bbf8359e81d2004384e24f467b (diff) | |
download | wee-slack-512133c74a08865d07ae6b1b079ef5f43b42e164.tar.gz |
unicode fixes, change variable names, better tests
Diffstat (limited to '_pytest/conftest.py')
-rw-r--r-- | _pytest/conftest.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/_pytest/conftest.py b/_pytest/conftest.py index 2f90977..e9b7750 100644 --- a/_pytest/conftest.py +++ b/_pytest/conftest.py @@ -1,7 +1,8 @@ import pytest import sys -sys.path.append(str(pytest.config.rootdir)) +sys.path.append(".") +#sys.path.append(str(pytest.config.rootdir)) from wee_slack import SlackServer from wee_slack import Channel |