Skip to content

Commit 38ea26f

Browse files
committed
chore: remove pkg job with faster/better check in CI already
1 parent 788c09a commit 38ea26f

File tree

2 files changed

+0
-18
lines changed

2 files changed

+0
-18
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,6 @@ jobs:
4242
- name: Install test dependencies
4343
run: uv tool install --with tox-gh-actions --with tox-uv tox
4444

45-
- name: Test packaging
46-
run: tox -e pkg
47-
4845
- name: Run tests with PyTest 6
4946
run: tox
5047
env:

tox.ini

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[tox]
22
envlist =
33
py{38,39,310,311,312}-pytest{6,7,8}
4-
pkg
54

65
[gh-actions]
76
python =
@@ -25,17 +24,3 @@ deps =
2524
pytest8: pytest>=8.0.0,<9.0.0
2625

2726
commands = {envpython} -m pytest {posargs}
28-
29-
[testenv:pkg]
30-
skip_install = true
31-
deps =
32-
twine
33-
build
34-
commands =
35-
{envpython} -c 'import os.path, shutil, sys; \
36-
dist_dir = os.path.join("{toxinidir}", "dist"); \
37-
os.path.isdir(dist_dir) or sys.exit(0); \
38-
print("Removing \{!s\} contents...".format(dist_dir), file=sys.stderr); \
39-
shutil.rmtree(dist_dir)'
40-
{envpython} -m build --outdir {toxinidir}/dist/ {toxinidir}
41-
{envpython} -m twine check --strict dist/*

0 commit comments

Comments
 (0)