Skip to content

Commit

Permalink
test-speed added
Browse files Browse the repository at this point in the history
  • Loading branch information
liampauling committed Sep 11, 2023
1 parent aa8edcd commit b50fa22
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 3 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,31 @@ jobs:
coverage run -m unittest discover
coverage report
test-speed:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: 3.11

- name: Check setup.py
run: |
python setup.py check
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install -r requirements-speed.txt
pip install -r requirements-test.txt
- name: Unittest
run: |
python -m unittest discover -s tests
deploy:
needs: test
runs-on: ubuntu-latest
Expand Down
6 changes: 4 additions & 2 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,16 @@ Release History

**Improvements**

-
- #675 provide flumine to add and start methods (@mzaja)
- Lazily evaluate log message parameters (@petedmarsh)

**Bug Fixes**

-
- #677 Remove duplicated method call (@mzaja)

**Libraries**

- Add [speed] (@petedmarsh)
- Remove py3.7
- betfairlightweight upgraded to 2.19.0b0

Expand Down
2 changes: 1 addition & 1 deletion requirements-speed.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
betfairlightweight[speed]==2.17.3
betfairlightweight[speed]==2.19.0b0

0 comments on commit b50fa22

Please sign in to comment.