MIN Update to pytest native names #77
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Jug | |
on: [ push, pull_request ] | |
jobs: | |
build: | |
# We need to use an older version of ubuntu to support older versions of Python | |
# https://github.com/actions/setup-python/issues/544 | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python-version: | |
- '3.5' | |
- '3.6' | |
- '3.7' | |
- '3.8' | |
- '3.9' | |
- '3.10' | |
- '3.11' | |
- '3.12' | |
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 and Jug | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install pytest | |
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | |
if [ -f test-requirements.txt ]; then pip install -r test-requirements.txt; fi | |
pip install . | |
- name: Start Redis | |
uses: supercharge/redis-github-action@1.1.0 | |
with: | |
redis-version: 6 | |
- name: Test Jug script | |
run: | | |
mkdir _test | |
cd _test | |
TEST_REDIS=1 jug test-jug | |
cp ../jug/tests/jugfiles/run-simple-create-file.py . | |
jug execute run-simple-create-file.py | |
test -f test-result.txt |