We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 576deaa commit b094f27Copy full SHA for b094f27
.github/workflows/python-tests.yml
@@ -23,9 +23,11 @@ jobs:
23
run: |
24
python -m pip install --upgrade pip
25
pip install -r requirements-dev.txt
26
+ # Install the package in development mode
27
+ pip install -e .
28
- name: Run tests
29
- pytest --cov=src/borsdata_client tests/
30
+ PYTHONPATH=$PWD pytest --cov=src/borsdata_client tests/
31
env:
32
BORSDATA_API_KEY: ${{ secrets.BORSDATA_API_KEY }}
33
- name: Upload coverage reports to Codecov
0 commit comments