diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2013-02-02 11:27:48 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2013-02-02 11:27:48 -0500 |
commit | f3c8815cbcabaef7d54490b597e5b5a2f6b1612b (patch) | |
tree | 35d4b9bfb2eee2dca6a18f14cc9f86dcc2ddd6f7 /tests/test_farm.py | |
parent | c19232a9d2be2bde30e446311f32e9dcdd5d4774 (diff) | |
download | python-coveragepy-git-f3c8815cbcabaef7d54490b597e5b5a2f6b1612b.tar.gz |
Directory changed: test->tests. Adapt.
Diffstat (limited to 'tests/test_farm.py')
-rw-r--r-- | tests/test_farm.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_farm.py b/tests/test_farm.py index f25d6109..e514e663 100644 --- a/tests/test_farm.py +++ b/tests/test_farm.py @@ -3,14 +3,14 @@ import difflib, filecmp, fnmatch, glob, os, re, shutil, sys from nose.plugins.skip import SkipTest -from test.backtest import run_command, execfile # pylint: disable=W0622 +from tests.backtest import run_command, execfile # pylint: disable=W0622 from coverage.control import _TEST_NAME_FILE def test_farm(clean_only=False): """A test-generating function for nose to find and run.""" - for fname in glob.glob("test/farm/*/*.py"): + for fname in glob.glob("tests/farm/*/*.py"): case = FarmTestCase(fname, clean_only) yield (case,) |