Skip to content

fix FutureWarnings in team.py (#55) #62

fix FutureWarnings in team.py (#55)

fix FutureWarnings in team.py (#55) #62

Workflow file for this run

name: Python package
on: [push]
jobs:
pytest:
name: pytest suite
strategy:
max-parallel: 1
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }} (${{ matrix.os }})
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest
python -m pip install -r requirements.txt
- name: Run pytest suite
env:
EMAIL: ${{ secrets.EMAIL }}
PASSWORD: ${{ secrets.PASSWORD }}
run: |
pytest -vvl