diff --git a/.github/workflows/python.yaml b/.github/workflows/python.yaml index 28ea1b2..2f2dbd7 100644 --- a/.github/workflows/python.yaml +++ b/.github/workflows/python.yaml @@ -22,5 +22,5 @@ jobs: uses: py-actions/flake8@v2 - name: Run pytest run: | - python -m pip install pytest requests + python -m pip install -r requirements.txt pytest diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..547de5c --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +pytest +requests