Skip to content

Commit

Permalink
tasks/vstart_runner: fix default run-all
Browse files Browse the repository at this point in the history
This broke when path changed.  It's a bit
weird to run the cephfs tests by default
now that vstart_runner is not cephfs-specific,
but for the moment just restore the old
behaviour.

Signed-off-by: John Spray <[email protected]>
  • Loading branch information
John Spray committed Nov 8, 2016
1 parent f748226 commit 530d03d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/vstart_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -911,9 +911,9 @@ def enumerate_methods(s):
log.info("Loaded: {0}".format(list(module_suites)))
overall_suite = suite.TestSuite(module_suites)
else:
log.info("Excuting all tests")
log.info("Executing all cephfs tests")
overall_suite = decorating_loader.discover(
os.path.dirname(os.path.abspath(__file__))
os.path.join(os.path.dirname(os.path.abspath(__file__)), "cephfs")
)

# Filter out tests that don't lend themselves to interactive running,
Expand Down

0 comments on commit 530d03d

Please sign in to comment.