FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
GitPython/tox.ini at 3.1.59 · gitpython-developers/GitPython · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
gitpython-developers
/
GitPython
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
989
Star
5.2k
Code
Issues
8
Pull requests
2
Discussions
Actions
Security and quality
34
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
GitPython
/
tox.ini
Copy path
More file actions
More file actions
Latest commit
History
History
History
50 lines (44 loc) · 1.19 KB
Breadcrumbs
GitPython
/
tox.ini
Copy path
File metadata and controls
50 lines (44 loc) · 1.19 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[tox]
requires
= tox>=4
env_list
= py{37,38,39,310,311,312,313,314,315}, ruff, format, mypy, html, misc
[testenv]
description
= Run unit tests
package
= wheel
extras
= test
pass_env
= SSH_*
commands
= pytest --
color
=yes {posargs}
[testenv:ruff]
description
= Lint with Ruff
base_python
= py{39,310,311,312,38,37}
deps
= ruff
set_env
=
CLICOLOR_FORCE
= 1
#
Set NO_COLOR to override this.
commands
= ruff check .
[testenv:format]
description
= Check formatting with Ruff
base_python
= py{39,310,311,312,38,37}
deps
= ruff
set_env
=
CLICOLOR_FORCE
= 1
#
Set NO_COLOR to override this.
commands
= ruff format --check .
[testenv:mypy]
description
= Typecheck with mypy
base_python
= py{39,310,311,312,38,37}
set_env
=
MYPY_FORCE_COLOR
= 1
commands
= mypy
ignore_outcome
= true
[testenv:html]
description
= Build HTML documentation
base_python
= py{39,310,311,312,38,37}
extras
= doc
allowlist_externals
= make
commands
=
make
BUILDDIR
={env_tmp_dir}/doc/build -C doc clean
make
BUILDDIR
={env_tmp_dir}/doc/build -C doc html
[testenv:misc]
description
= Run other checks via pre-commit
base_python
= py{39,310,311,312,38,37}
set_env
=
SKIP
= ruff-format,ruff
commands
= pre-commit run --all-files
Back
|
FazBrowse Home
|
New Git URL