diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4c0f980..0313931 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,15 +4,12 @@ on: push: branches: - master + - run-ci-on-windows tags: - v* pull_request: branches: - "*" - schedule: - # Daily at 06:14. This is just an arbitrary time to stagger - # relative to other daily builds in any given organization. - - cron: '14 6 * * *' concurrency: group: ${{ github.ref }}-${{ github.workflow }}-${{ github.event_name }}-${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) && github.sha || '' }} diff --git a/tests/qwebengineview.py b/tests/qwebengineview.py new file mode 100644 index 0000000..6e0cfad --- /dev/null +++ b/tests/qwebengineview.py @@ -0,0 +1,7 @@ +from PyQt5.QtWebEngineWidgets import QWebEngineView + +view = QWebEngineView() +view.setPage(None) + +# note: eventhough the page set is None, Qt will create a default page if you +# retrieve it with page()