Skip to content

Fix fixed target display intervals additional delay bug #591

Fix fixed target display intervals additional delay bug

Fix fixed target display intervals additional delay bug #591

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
runs-on: ${{ matrix.os }}
name: "${{ matrix.os }} :: ${{ matrix.python-version }} :: ${{ matrix.psychopy-version }}"
strategy:
fail-fast: false
matrix:
# test using latest available version of psychopy
os: ["ubuntu-22.04", "windows-latest"]
python-version: ["3.8", "3.9", "3.10"]
psychopy-version: ["latest"]
# additional regression tests using older versions of psychopy
include:
- os: "ubuntu-22.04"
python-version: "3.10"
psychopy-version: "2023.2.3"
- os: "ubuntu-22.04"
python-version: "3.10"
psychopy-version: "2023.1.3"
- os: "ubuntu-22.04"
python-version: "3.8"
psychopy-version: "2022.2.5"
- os: "ubuntu-22.04"
python-version: "3.8"
psychopy-version: "2022.1.4"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Mesa 3D to get OpenGL support on Windows without a GPU
uses: ssciwr/setup-mesa-dist-win@v1
with:
version: "23.1.5"
- name: Linux setup
if: runner.os == 'Linux'
run: |
# various psychopy & qt system dependencies
sudo apt-get update -yy && sudo apt-get install -yy libasound2-dev portaudio19-dev libpulse-dev libusb-1.0-0-dev libsndfile1-dev libportmidi-dev liblo-dev libsdl2-mixer-2.0-0 libsdl2-image-2.0-0 libsdl2-2.0-0 freeglut3-dev scrot libnotify-dev pandoc libglu1-mesa-dev libx11-dev libx11-xcb-dev libxext-dev libxfixes-dev libxi-dev libxrender-dev libxcb1-dev libxcb-glx0-dev libxcb-keysyms1-dev libxcb-image0-dev libxcb-shm0-dev libxcb-icccm4-dev libxcb-sync-dev libxcb-xfixes0-dev libxcb-shape0-dev libxcb-randr0-dev libxcb-render-util0-dev libxkbcommon-dev libxkbcommon-x11-dev '^libxcb.*-dev' gnome-screenshot
# install pre-built ubuntu/gtk3 wxPython wheel
pip install -f https://extras.wxpython.org/wxPython4/extras/linux/gtk3/${{ matrix.os }}/ wxPython
# enable colours in logs
echo "FORCE_COLOR=1" >> $GITHUB_ENV
echo "TERM=xterm-256color" >> $GITHUB_ENV
# psychopy requires that the python executable has permission to set its priority level
sudo setcap cap_sys_nice+ep `python -c "import os; import sys; print(os.path.realpath(sys.executable))"`
# start an Xvfb server for GUI tests
nohup Xvfb :99 -screen 0 1024x768x24 &
echo "DISPLAY=:99" >> $GITHUB_ENV
# see Qt debug output when loading plugins
echo "QT_DEBUG_PLUGINS=1" >> $GITHUB_ENV
# workaround for Xlib.error.XauthError ~/.Xauthority: [Errno 2] No such file or directory
sudo touch ~/.Xauthority
- if: matrix.psychopy-version != 'latest'
run: pip install psychopy==${{ matrix.psychopy-version }} --verbose
- run: pip install -e .[tests,docs] --verbose
- run: python -m pytest --cov=vstt --cov-report=xml -v -s -x
- uses: actions/upload-artifact@v3
if: failure()
with:
path: "*.*"
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml
name: ${{ matrix.os }}-${{ matrix.python-version }}
fail_ci_if_error: true
verbose: true