Skip to content

FIX: Remove multiprocessing from find_multiple and a small tweak to _… #164

FIX: Remove multiprocessing from find_multiple and a small tweak to _…

FIX: Remove multiprocessing from find_multiple and a small tweak to _… #164

Workflow file for this run

name: Tests
on:
push:
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.7]
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 Test Dependencies
run: |
pip install -r test-requirements.txt
- name: Install Package
run: |
pip install .
- run: sudo apt-get install xvfb
- name: Run Tests
run: |
xvfb-run --auto-servernum python run_tests.py