Skip to content

Commit

Permalink
That should work best
Browse files Browse the repository at this point in the history
  • Loading branch information
roekatz committed Oct 9, 2024
1 parent 722c079 commit 62f9ce3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/pdp_cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ jobs:

- name: Run Pytests
run: |
export PYTHONPATH=$(pwd)
python -m pip install --upgrade pip
pip install -r requirements.txt -r requirements-dev.txt
python setup.py install
pip install ".[dev]"
pytest -s --cache-clear horizon/tests/
3 changes: 1 addition & 2 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
pytest
aioresponses
pytest-asyncio
aiohttp>=3.9.4,<4
aioresponses
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,7 @@ def get_data_files(root_directory: str):
include_package_data=True,
data_files=get_data_files("horizon/static"),
install_requires=get_requirements(),
# dev_requires=get_requirements("dev"),
extras_require={
"dev": get_requirements("dev"),
},
)

0 comments on commit 62f9ce3

Please sign in to comment.