Skip to content

explaination code on checkout #15

explaination code on checkout

explaination code on checkout #15

Workflow file for this run

name: Tests
on:
push:
branches: [ main, master ]
paths-ignore:
- 'pretix_paybox/locale/**'
pull_request:
branches: [ main, master ]
paths-ignore:
- 'pretix_paybox/locale/**'
jobs:
test:
runs-on: ubuntu-latest
name: Tests
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- uses: actions/cache@v1
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install system dependencies
run: sudo apt update && sudo apt install gettext
- name: Install pretix
run: pip3 install pretix
- name: Install Dependencies
run: pip3 install pytest pytest-django -Ue .
# - name: Run checks
# run: py.test tests