Skip to content

Commit

Permalink
Add __init__ to test dirs; use absolute imports
Browse files Browse the repository at this point in the history
  • Loading branch information
caleb531 committed Jul 12, 2015
1 parent 93ba67d commit cb8a079
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
Empty file added tests/__init__.py
Empty file.
Empty file added tests/fixtures/__init__.py
Empty file.
2 changes: 1 addition & 1 deletion tests/test_local.py
Expand Up @@ -7,7 +7,7 @@
import nose.tools as nose
import swb.local as swb
from mock import ANY, mock_open, patch
from fixtures.local import set_up, tear_down, mock_backups
from tests.fixtures.local import set_up, tear_down, mock_backups


CONFIG_PATH = 'tests/files/config.ini'
Expand Down
2 changes: 1 addition & 1 deletion tests/test_remote.py
Expand Up @@ -7,7 +7,7 @@
import nose.tools as nose
import swb.remote as swb
from mock import ANY, mock_open, patch
from fixtures.remote import set_up, tear_down
from tests.fixtures.remote import set_up, tear_down


WP_PATH = '~/mysite'
Expand Down

0 comments on commit cb8a079

Please sign in to comment.