Skip to content

Ignore context on __len__() #29

Ignore context on __len__()

Ignore context on __len__() #29

Workflow file for this run

name: ⏳ Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7]
hdt-version: ['v1.3.3']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }} 🐍
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Setup pipenv
uses: dschep/install-pipenv-action@v1
- name: Cache pipenv dependencies
uses: actions/cache@v2
id: cache-pipenv
with:
path: ~/.local/share/virtualenvs
key: ${{ runner.os }}-${{ matrix.python-version }}-pipenv-${{ hashFiles('**/Pipfile.lock') }}
- name: Setup HDT ${{ matrix.hdt-version }}
uses: Callidon/setup-hdt-action@v1.2
with:
token: ${{ secrets.GITHUB_TOKEN }}
hdt-tag: ${{ matrix.hdt-version }}
source-path: ./
- name: Install dependencies
if: steps.cache-pipenv.outputs.cache-hit != 'true'
run: pipenv install --dev
- name: Compile & install package
run: pipenv run python setup.py install
- name: Test with pytest
run: pipenv run pytest