diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ebc9393..0d04224 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,4 +21,5 @@ jobs: run: | python -m pip install --upgrade pip pip install -r requirements.txt + pip install -r test-requirements.txt python -m pytest ./tests/src diff --git a/requirements.txt b/requirements.txt index f581443..f3442d8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,5 +2,4 @@ Pinterest-Generated-Client==0.1.3 python-dateutil==2.8.2 six==1.16.0 urllib3==1.26.12 -python-dotenv==0.20.0 -pytest==7.1.3 \ No newline at end of file +python-dotenv==0.20.0 \ No newline at end of file diff --git a/setup.py b/setup.py index 0f2a660..0eecf5a 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ "python-dateutil", "python-dotenv==0.20.0", "six==1.16.0", - "Pinterest-Generated-Client==0.1.2" + "Pinterest-Generated-Client==0.1.3" ] long_description = (Path(__file__).parent / "README.md").read_text() diff --git a/tests/test-requirements.txt b/tests/test-requirements.txt new file mode 100644 index 0000000..f97bae6 --- /dev/null +++ b/tests/test-requirements.txt @@ -0,0 +1 @@ +pytest==7.1.3 \ No newline at end of file