Skip to content

Commit

Permalink
github: Update
Browse files Browse the repository at this point in the history
  • Loading branch information
echarrod committed Nov 4, 2024
1 parent c0a7d27 commit f734394
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
python-version: [ "3.12", "3.13", "3.14" ]

steps:

- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -27,7 +27,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
python setup.py install
pip install .[test]
- name: Test with pytest
run: |
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ source env/bin/activate
## Install Dependencies
```bash
python -m pip install --upgrade pip setuptools wheel
python setup.py install
pip install -e '.[test]'
```

## Run Tests
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
keywords='Luno API Bitcoin Ethereum',
test_suite='tests',
setup_requires=['pytest-runner'],
tests_require=['pytest', 'pytest-cov', 'requests_mock']
extras_require={
"test": ["pytest", "pytest-cov", "requests_mock"]
},
)

0 comments on commit f734394

Please sign in to comment.