We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e78d40 commit 9f0277bCopy full SHA for 9f0277b
1 file changed
examples/core_display_qt5_app.py
@@ -1,5 +1,6 @@
1
##Author github user @Tanneguydv, 2021
2
3
+import os
4
import sys
5
from OCC.Core.BRepPrimAPI import BRepPrimAPI_MakeBox
6
@@ -62,4 +63,5 @@ def eraseBOX(self):
62
63
if __name__ == '__main__':
64
app = QApplication(sys.argv)
65
ex = App()
- sys.exit(app.exec_())
66
+ if os.getenv('APPVEYOR') is None:
67
+ sys.exit(app.exec_())
0 commit comments