File: tox.ini

package info (click to toggle)
microsoft-authentication-library-for-python 1.34.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,320 kB
  • sloc: python: 8,613; xml: 2,783; sh: 27; makefile: 19
file content (34 lines) | stat: -rw-r--r-- 635 bytes parent folder | download
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
[tox]
env_list =
    py3
minversion = 4.21.2

[testenv]
description = run the tests with pytest
package = wheel
wheel_build_env = .pkg
passenv =
    # This allows tox environment on a DevBox to trigger host browser
    DISPLAY
deps =
    pytest>=6
    -r requirements.txt
commands =
    pip list
    {posargs:pytest --color=yes}

[testenv:docs]
deps =
    -r docs/requirements.txt
commands =
    sphinx-build docs docs/_build

[testenv:azcli]
deps =
    azure-cli
commands_pre =
    # It will unfortunately be run every time but luckily subsequent runs are fast.
    pip install -e .
commands =
    pip list
    {posargs:az --version}