Skip to content

Bump requests from 2.26.0 to 2.31.0 #11

Bump requests from 2.26.0 to 2.31.0

Bump requests from 2.26.0 to 2.31.0 #11

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python application
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install pipenv
run: |
python -m pip install --upgrade pip
pip install pipenv
- name: Test with pytest and behave
run: |
pipenv install --skip-lock --dev
pipenv run python -m pytest --disable-warnings -vv -x -m "not slow" --exitfirst --showlocals --tb=long
pipenv run behave --tags=-skip --tags=-wip --stop --no-skipped tests/features