Skip to content

Commit

Permalink
Tweak a new junit test introduced in #204 so it doesn't pull in examp…
Browse files Browse the repository at this point in the history
…les/ into our testing coverage.
  • Loading branch information
CleanCut committed Apr 11, 2019
1 parent 68a6d5a commit d904776
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions green/test/test_cmdline.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,8 @@ def test_generate_junit_test_report(self):
report = join(tmpdir, "test_report.xml")
self.assertFalse(isfile(report))

argv = ["--junit-report", report, "example/proj" ]
cmdline.main(argv)
argv = ["--junit-report", report]
cmdline.main(argv, testing=True)

self.assertTrue(isfile(report))
shutil.rmtree(tmpdir)

0 comments on commit d904776

Please sign in to comment.