Skip to content

[Doc] Add Discord links #279

[Doc] Add Discord links

[Doc] Add Discord links #279

Workflow file for this run

name: pytest-linux
on:
push:
branches: [ $default-branch , "main" , "dev" ]
pull_request:
branches: [ $default-branch , "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install python3-opengl xvfb
bash .github/unittest/install_dependencies.sh
- name: Test with pytest
run: |
xvfb-run -s "-screen 0 1024x768x24" pytest tests/ --doctest-modules --junitxml=junit/test-results.xml --cov=. --cov-report=xml --cov-report=html
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
fail_ci_if_error: false