Skip to content

Bump hypothesis from 6.111.1 to 6.115.6 #2247

Bump hypothesis from 6.111.1 to 6.115.6

Bump hypothesis from 6.111.1 to 6.115.6 #2247

Workflow file for this run

name: PyTest
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
PyTests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: 3.11
- name: Install pip
run: |
python -m pip install pip==$(sed -nE 's/pip = "==(.*)"/\1/p' Pipfile)
- name: Install pipenv
run: |
PIPENV_VERSION=$(sed -nE 's/pipenv = "==(.*)"/\1/p' Pipfile)
python -m pip install pipenv==$PIPENV_VERSION
- name: Install from pipfile
run: |
pipenv install --system
- name: Running pytest
run: |
cd techsupport_bot
python3.11 -m pytest tests/ -p no:warnings