Skip to content

Commit

Permalink
conan-io#147 Try to fix Windows tests
Browse files Browse the repository at this point in the history
Signed-off-by: Uilian Ries <uilianries@gmail.com>
  • Loading branch information
uilianries committed Mar 15, 2019
1 parent 598d744 commit 3d5e5ca
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions cpt/test/unit/packager_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -832,7 +832,8 @@ def test_regular_pip_command(self):
ci_manager=self.ci_manager,
out=output.write,
conan_api=self.conan_api,
runner=self.runner)
runner=self.runner,
exclude_vcvars_precommand=True)
self.packager.add_common_builds()
self.packager.run()
self.assertIn("[pip_update]", output)
Expand All @@ -854,7 +855,8 @@ def test_custom_pip_command(self):
ci_manager=self.ci_manager,
out=output.write,
conan_api=self.conan_api,
runner=self.runner)
runner=self.runner,
exclude_vcvars_precommand=True)
self.packager.add_common_builds()
self.packager.run()
self.assertIn("[pip_update]", output)
Expand All @@ -875,7 +877,8 @@ def test_invalid_pip_command(self):
ci_manager=self.ci_manager,
out=output.write,
conan_api=self.conan_api,
runner=self.runner)
runner=self.runner,
exclude_vcvars_precommand=True)
self.packager.add_common_builds()
self.packager.run()

Expand Down

0 comments on commit 3d5e5ca

Please sign in to comment.