Skip to content

Commit 3bd3db8

Browse files
Get rid of tox
1 parent 10f8ffe commit 3bd3db8

File tree

5 files changed

+4
-99
lines changed

5 files changed

+4
-99
lines changed

.github/workflows/unit-test.yml

Lines changed: 2 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,5 @@ jobs:
2121
python-version: ${{ matrix.python-version }}
2222
- name: Install uv
2323
run: make install-uv
24-
- name: Run Tox
25-
run: uv run tox -e py
26-
27-
# test-win:
28-
# runs-on: windows-latest
29-
# strategy:
30-
# matrix:
31-
# python-version: ["3.7", "3.8", "3.9", "3.10"]
32-
# steps:
33-
# - uses: actions/checkout@v3
34-
# - name: Set up Python ${{ matrix.python-version }}
35-
# uses: actions/setup-python@v3
36-
# with:
37-
# python-version: ${{ matrix.python-version }}
38-
# - name: Install tox
39-
# run: pip install tox
40-
# - name: Run Tox
41-
# run: tox -e py
24+
- name: Run Unit Tests
25+
run: uv run pytest test/unit

README.md

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -454,23 +454,15 @@ exec $SHELL
454454
make sync-dev
455455
```
456456
457-
### Run tests
458-
459-
You can run all of the tests running on CI via `tox` in your local.
460-
461-
```bash
462-
$ uv run tox
463-
```
464-
465-
You also can run particular tests like below.
457+
You can run the following tests:
466458
467459
#### Unit
468460
469461
```bash
470462
$ uv run pytest test/unit
471463
```
472464
473-
Run with `pytest-xdist`
465+
Run in parallel (2 threads)
474466
475467
```bash
476468
$ uv run pytest -n 2 test/unit

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ dev-dependencies = [
1717
"pytest-xdist~=3.8",
1818
"python-dateutil~=2.9",
1919
"ruff~=0.12.7",
20-
"tox~=4.27",
2120
"types-python-dateutil~=2.9",
2221
]
2322

tox.ini

Lines changed: 0 additions & 15 deletions
This file was deleted.

uv.lock

Lines changed: 0 additions & 55 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)