30 lines
760 B
Python
30 lines
760 B
Python
import os
|
|
import pathlib
|
|
|
|
from .. import import_it
|
|
from .. import major
|
|
|
|
QtWidgets = import_it("PyQt", "QtWidgets")
|
|
|
|
|
|
test_path_env_var = 'PYQT{}TOOLS_TEST_PATH'.format(major)
|
|
test_file_contents = b'heffalump'
|
|
write_for_test = test_path_env_var in os.environ
|
|
|
|
|
|
class TestButton(QtWidgets.QPushButton):
|
|
def __init__(self, parent):
|
|
global write_for_test
|
|
|
|
super().__init__(parent)
|
|
|
|
self.setText('pyqt{}-tools Test Button'.format(major))
|
|
|
|
if write_for_test:
|
|
write_for_test = False
|
|
|
|
path = pathlib.Path(os.environ[test_path_env_var])
|
|
path.parent.mkdir(parents=True, exist_ok=True)
|
|
with path.open('ab') as f:
|
|
f.write(test_file_contents)
|