Skip to content

Bump ip from 1.1.5 to 1.1.9 in /examples/rv-react-ts-example #144

Bump ip from 1.1.5 to 1.1.9 in /examples/rv-react-ts-example

Bump ip from 1.1.5 to 1.1.9 in /examples/rv-react-ts-example #144

Workflow file for this run

name: python-tests
on:
- push
jobs:
test:
runs-on: Ubuntu-20.04
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt-get -y install libsdl1.2-dev libsdl2-dev
python -m pip install --upgrade pip
pip install -r requirements/tests.txt
pip install .
- name: Test with pytest
run: |
cd tests/python
pytest