Sample project to diagnose Qt's QLocale calls and mocks in AppVeyor.
Motivation: understand why this PR is failing when building in AppVeyor.
AppVeyor project page is here.
For some reason, importing QLocale
with from PyQt5.Qt import QLocale
leads to AppVeyor import time hangs; the solution seems to be importing it with from PyQt5.QtCore import QLocale
, instead.
Clone and install with:
$ pip install .
import qtql
locale = qtql.name()
$ pip install -e .[dev]
$ pytest
Created by Tiago Montes.