Skip to content

fix the broken test #37

fix the broken test

fix the broken test #37

Workflow file for this run

name: Run tests
on:
push:
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel pytest
- name: Install jinja
run: |
python setup.py install --prefix=$HOME/.local
- name: test jinja
run: |
pytest -vv -s