File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -15,10 +15,12 @@ jobs:
15
15
steps :
16
16
- uses : actions/checkout@v4
17
17
- name : Set up Python
18
- uses : actions/setup-python@v4
18
+ uses : actions/setup-python@v5
19
19
with :
20
- python-version : ${{ matrix.python }}
20
+ python-version : ${{ matrix.python-version }}
21
+ cache : " pip"
22
+ cache-dependency-path : requirements-dev.txt
21
23
- name : Install dependencies
22
- run : python -m pip install --upgrade tox
24
+ run : python -m pip install -r requirements-dev.txt
23
25
- name : Run tests
24
- run : tox -e py
26
+ run : pytest --cov=fluent
Original file line number Diff line number Diff line change @@ -6,5 +6,6 @@ skip_missing_interpreters = True
6
6
[testenv]
7
7
deps =
8
8
pytest
9
+ pytest-cov
9
10
msgpack
10
- commands = pytest -v
11
+ commands = pytest -- cov =fluent
You can’t perform that action at this time.
0 commit comments