Skip to content

Commit

Permalink
dual target test
Browse files Browse the repository at this point in the history
  • Loading branch information
nsheff committed Mar 21, 2019
1 parent 075e85f commit 32ebbf9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/pipeline_manager/test_pipeline_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,11 @@ def test_me(self):
self.assertFalse(os.path.isfile(tgt5))
self.pp.run("touch " + tgt1, [tgt5, tgt6])
self.assertTrue(os.path.isfile(tgt1))
# if two targets, both exist, should not run
self.assertFalse(os.path.isfile(tgt5))
self.pp.run("touch " + tgt5, [tgt1, tgt6])
self.assertFalse(os.path.isfile(tgt5))




Expand Down

0 comments on commit 32ebbf9

Please sign in to comment.