diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index 9c3783bb5..327fcb257 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -22,7 +22,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - python setup.py + pip install -r requirements.txt working-directory: ./apps/python-sdk - name: Test with pytest run: | diff --git a/apps/python-sdk/requirements.txt b/apps/python-sdk/requirements.txt new file mode 100644 index 000000000..1bed58814 --- /dev/null +++ b/apps/python-sdk/requirements.txt @@ -0,0 +1,3 @@ +requests +pytest +python-dotenv \ No newline at end of file