summaryrefslogtreecommitdiff
path: root/silx/gui/test/__init__.py
diff options
context:
space:
mode:
authorAlexandre Marie <alexandre.marie@synchrotron-soleil.fr>2020-07-21 14:45:14 +0200
committerAlexandre Marie <alexandre.marie@synchrotron-soleil.fr>2020-07-21 14:45:14 +0200
commit328032e2317e3ac4859196bbf12bdb71795302fe (patch)
tree8cd13462beab109e3cb53410c42335b6d1e00ee6 /silx/gui/test/__init__.py
parent33ed2a64c92b0311ae35456c016eb284e426afc2 (diff)
New upstream version 0.13.0+dfsg
Diffstat (limited to 'silx/gui/test/__init__.py')
-rw-r--r--silx/gui/test/__init__.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/silx/gui/test/__init__.py b/silx/gui/test/__init__.py
index 8a9a949..2e7901d 100644
--- a/silx/gui/test/__init__.py
+++ b/silx/gui/test/__init__.py
@@ -1,7 +1,7 @@
# coding: utf-8
# /*##########################################################################
#
-# Copyright (c) 2016-2018 European Synchrotron Radiation Facility
+# Copyright (c) 2016-2020 European Synchrotron Radiation Facility
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
@@ -106,7 +106,8 @@ def suite():
test_suite.addTest(test_icons.suite())
test_suite.addTest(test_colors.suite())
test_suite.addTest(test_data.suite())
- test_suite.addTest(test_utils.suite())
test_suite.addTest(test_plot3d_suite())
test_suite.addTest(test_dialog.suite())
+ # Run test_utils last: it interferes with OpenGLWidget through isOpenGLAvailable
+ test_suite.addTest(test_utils.suite())
return test_suite