Skip to content

Merge pull request #19 from iamatulsingh/iamatulsingh-patch-1 #27

Merge pull request #19 from iamatulsingh/iamatulsingh-patch-1

Merge pull request #19 from iamatulsingh/iamatulsingh-patch-1 #27

Workflow file for this run

name: PyTest
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Check out repository code
uses: actions/checkout@v2
# Setup Python (faster than using Python container)
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: "3.11.3"
- name: Install required libraries
run: |
pip install -r requirements.txt
- name: Run test suite
run: |
pytest -v tests/e2e.py