Lines Matching +full:xvfb +full:- +full:run
6 xvfb: true
9 - checkout: self
14 - script: sudo setfacl -Rb /home/vsts
17 - script: ${{ parameters.sudo_dependencies }} ./.azure-pipelines/posix-deps-${{ parameters.dependen…
20 - script: ./configure --with-pydebug
23 - script: make -j4
26 - ${{ if eq(parameters.coverage, 'true') }}:
27 - script: ./python -m venv venv && ./venv/bin/python -m pip install -U coverage
30 - script: ./venv/bin/python -m test.pythoninfo
33 - script: |
34 $COMMAND -m coverage run --pylib -m test \
35 --fail-env-changed \
36 -uall,-cpu \
37 --junit-xml=$(build.binariesDirectory)/test-results.xml \
38 -x test_multiprocessing_fork \
39 -x test_multiprocessing_forkserver \
40 -x test_multiprocessing_spawn \
41 -x test_concurrent_futures
44 ${{ if eq(parameters.xvfb, 'true') }}:
45 COMMAND: xvfb-run ./venv/bin/python
46 ${{ if ne(parameters.xvfb, 'true') }}:
49 - script: ./venv/bin/python -m coverage xml
52 …- script: source ./venv/bin/activate && bash <(curl -s https://codecov.io/bash) -y .github/codecov…
56 - ${{ if ne(parameters.coverage, 'true') }}:
57 - script: make pythoninfo
60 …- script: $COMMAND buildbottest TESTOPTS="-j4 -uall,-cpu --junit-xml=$(build.binariesDirectory)/te…
63 ${{ if eq(parameters.xvfb, 'true') }}:
64 COMMAND: xvfb-run make
65 ${{ if ne(parameters.xvfb, 'true') }}:
68 - ${{ if eq(parameters.patchcheck, 'true') }}:
69 - script: ./python Tools/scripts/patchcheck.py --travis true
70 displayName: 'Run patchcheck.py'
74 - task: PublishTestResults@2
77 testResultsFiles: '$(build.binariesDirectory)/test-results.xml'