3e69985b76
The new installs of the python module, python-dbusmock, is broken for python2. The tests still run fine on linux machine in Electron's pipeline setup on CircleCI, because the docker image used has the non-broken version of python-dbusmock for python2 installed. But running electron tests on any other linux machine would fail if they don't have this non-broken version of python-dbusmock for python2 installed, already, which is the case for most of the machines. Moreover, Python2 is deprecated now. So it would be better if we change the python interpreter in script/spec-runner.js file to python3, for which all the python modules are updated and working. Co-authored-by: Rituka Patwal <rituka.patwal@postman.com>
13 lines
347 B
YAML
13 lines
347 B
YAML
resources:
|
|
containers:
|
|
- container: arm64v8-test-container
|
|
image: electron.azurecr.io/arm64v8-4fc81b50f9c0980699d329bc32062fac20a26701
|
|
options: --shm-size 128m
|
|
|
|
jobs:
|
|
- job: Test_Arm64
|
|
container: arm64v8-test-container
|
|
displayName: Test Arm64 on Arm64 hardware
|
|
timeoutInMinutes: 30
|
|
steps:
|
|
- template: vsts-arm-test-steps.yml
|