diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-10-14 16:22:10 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-10-14 16:22:10 +0200 |
commit | edc7a6692ccdcef8f26d228cc37f5b24fb1433a9 (patch) | |
tree | 7704af1f750d9ea2f8d2c5e36c027be7ebcd397e /solenv | |
parent | 5b9a25883d59570915e5cdc53c6542def1fdb739 (diff) |
Disable PythonTest_solenv_python on Windows for now
...causes all gerrit/jenkins Windows builds to fail in test_gbuildtoide; Björn
to investigate...
Change-Id: I90f95e4a91f40835d2b2d9c67a6473b95fb81597
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/Module_solenv.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/solenv/Module_solenv.mk b/solenv/Module_solenv.mk index d179771827c9..f471374ed55e 100644 --- a/solenv/Module_solenv.mk +++ b/solenv/Module_solenv.mk @@ -22,9 +22,11 @@ $(eval $(call gb_Module_add_targets,solenv,\ endif ifneq ($(DISABLE_PYTHON),TRUE) +ifneq ($(OS),WNT) # disable on Windows for now, causes gerrit/jenkins failures $(eval $(call gb_Module_add_subsequentcheck_targets,solenv,\ PythonTest_solenv_python \ )) endif +endif # vim: set shiftwidth=4 tabstop=4 noexpandtab: |