| /external/fonttools/.github/workflows/ |
| D | test.yml | 13 # turns off tox's output redirection so we can debug package installation 28 run: pip install tox 29 - name: Run Tox 30 run: tox $TOX_OPTIONS -e lint,package_readme 53 run: pip install tox coverage 54 - name: Run Tox 55 run: tox $TOX_OPTIONS -e py-cov 56 - name: Run Tox without extra dependencies 57 run: tox $TOX_OPTIONS -e py-cov-noextra 83 run: pip install tox [all …]
|
| /external/scapy/.github/workflows/ |
| D | unittests.yml | 24 - name: Install tox 25 run: pip install tox 27 run: tox -e flake8 29 run: tox -e spell 31 run: tox -e twine 33 run: tox -e gitarchive 45 - name: Install tox 46 run: pip install tox 48 run: tox -e docs 67 - name: Install tox [all …]
|
| /external/python/jinja/.github/workflows/ |
| D | tests.yaml | 19 - {name: Linux, python: '3.8', os: ubuntu-latest, tox: py38} 20 - {name: '3.7', python: '3.7', os: ubuntu-latest, tox: py37} 21 - {name: '3.6', python: '3.6', os: ubuntu-latest, tox: py36} 22 - {name: 'PyPy', python: pypy3, os: ubuntu-latest, tox: pypy3} 23 - {name: Style, python: '3.8', os: ubuntu-latest, tox: style} 24 - {name: Docs, python: '3.8', os: ubuntu-latest, tox: docs} 25 - {name: Windows, python: '3.8', os: windows-latest, tox: py38} 26 - {name: Mac, python: '3.8', os: macos-latest, tox: py38} 50 if: matrix.tox == 'style' 51 - run: pip install tox [all …]
|
| /external/python/markupsafe/.github/workflows/ |
| D | tests.yaml | 19 - {name: Linux, python: '3.8', os: ubuntu-latest, tox: py38} 20 - {name: Windows, python: '3.8', os: windows-latest, tox: py38} 21 - {name: Mac, python: '3.8', os: macos-latest, tox: py38} 22 - {name: '3.7', python: '3.7', os: ubuntu-latest, tox: py37} 23 - {name: '3.6', python: '3.6', os: ubuntu-latest, tox: py36} 24 - {name: 'PyPy', python: pypy3, os: ubuntu-latest, tox: pypy3} 25 - {name: Style, python: '3.8', os: ubuntu-latest, tox: style} 26 - {name: Docs, python: '3.8', os: ubuntu-latest, tox: docs} 50 if: matrix.tox == 'style' 51 - run: pip install tox [all …]
|
| /external/yapf/ |
| D | HACKING.md | 17 YAPF uses tox 3 to test against multiple python versions and to build redistributables. 19 Tox will opportunistically use pyenv environments when available. 28 $ pipx run --spec='tox<4' tox 33 $ pipx run --spec='tox<4' tox -e bdist_wheel -e sdist 45 $ pipx run --spec='tox<4' tox 53 $ pipx run --spec='tox<4' tox -e bdist_wheel -e sdist
|
| D | tox.ini | 1 [tox] section 3 tox<4 argument 4 tox-pyenv 5 tox-wheel 7 # tox-wheel alias for `wheel_pep517 = true` argument
|
| /external/python/jinja/requirements/ |
| D | dev.txt | 12 filelock==3.0.12 # via tox, virtualenv 16 packaging==20.3 # via pytest, tox 18 pluggy==0.13.1 # via pytest, tox 20 py==1.8.1 # via pytest, tox 24 six==1.14.0 # via packaging, pip-tools, tox, virtualenv 25 toml==0.10.1 # via pre-commit, tox 26 tox==3.15.2 # via -r requirements/dev.in 27 virtualenv==20.0.20 # via pre-commit, tox
|
| /external/python/markupsafe/requirements/ |
| D | dev.txt | 12 filelock==3.0.12 # via tox, virtualenv 17 packaging==20.4 # via pytest, tox 19 pluggy==0.13.1 # via pytest, tox 21 py==1.9.0 # via pytest, tox 25 six==1.15.0 # via packaging, pip-tools, tox, virtualenv 26 toml==0.10.1 # via pre-commit, pytest, tox 27 tox==3.19.0 # via -r requirements/dev.in 28 virtualenv==20.0.21 # via pre-commit, tox
|
| /external/python/portpicker/.github/workflows/ |
| D | python-package.yml | 32 pip install pytest tox 34 - name: Test with tox 36 # Run tox using the version of Python in `PATH` 37 tox -e py 56 pip install pytest tox 58 - name: Test with tox 60 # Run tox using the version of Python in `PATH` 61 tox -e py
|
| /external/scapy/test/ |
| D | run_tests | 7 # this util will run the test suite using tox, with options that should work 9 # to work are python3 (or python) and tox. 42 # No arguments specified: use tox 43 # We use flags to disable tests that use external non tox-installed 46 # Check tox 47 tox --version >/dev/null 2>/dev/null 50 echo "ERROR: tox is not installed." 56 # Run tox
|
| D | run_tests.bat | 20 REM Check for tox 21 %PYTHON% -m tox --version >nul 2>&1 23 echo Tox not installed ! 27 REM Run tox 28 %PYTHON% -m tox -- -K tcpdump -K manufdb -K wireshark -K ci_only -K automotive_comm
|
| /external/python/watchdog/.github/workflows/ |
| D | tests.yml | 28 run: python -m pip install tox 31 run: python -m tox -q -e types,lint 34 run: python -m tox -q -e docs 36 tox: 37 name: ${{ matrix.tox.name }} ${{ matrix.os.emoji }} ${{ matrix.os.name }} ${{ matrix.python }} 82 run: python -m pip install tox 85 run: python -m tox -q -e py
|
| /external/python/mako/.github/workflows/ |
| D | run-on-pr.yaml | 13 name: ${{ matrix.python-version }}-${{ matrix.os }}-${{matrix.tox-env}} 22 tox-env: 42 pip install --upgrade tox setuptools 46 run: tox ${{ matrix.tox-env }}
|
| /external/python/oauth2client/ |
| D | CONTRIBUTING.md | 31 the docs yourself via `tox -e docs` and make sure they're readable. 112 [`tox`][2] into a system Python. The `tox` console script will be 114 `oauth2client` checkout root directory (it contains `tox.ini`), 115 invoke the `tox` console script. This will read the `tox.ini` file and 121 $ sudo pip install tox 123 $ tox 126 - In order to run the `pypy` environment (in `tox`) you'll need at 140 $ tox -e system-tests 141 $ tox -e system-tests3 193 [2]: https://tox.readthedocs.io/en/latest/
|
| /external/fonttools/Doc/source/ |
| D | developer.rst | 44 You can also use `tox <https://tox.readthedocs.io/en/latest/>`__ to 48 pip install tox 49 tox 54 …When you run ``tox`` without arguments, the tests are executed for all the environments listed in … 58 tox -e py36 59 TOXENV="py36-cov,htmlcov" tox
|
| /external/python/parse_type/ |
| D | tox.ini | 2 # TOX CONFIGURATION: parse_type 6 # Use tox to run tasks (tests, ...) in a clean virtual environment. 7 # Tox is configured by default for online usage. 9 # Run tox, like: 11 # tox -e py27 12 # tox -e py37 15 # * https://tox.readthedocs.io/en/latest/config.html 20 [tox] section
|
| /external/zxing/core/src/main/java/com/google/zxing/qrcode/detector/ |
| D | Detector.java | 266 private float sizeOfBlackWhiteBlackRunBothWays(int fromX, int fromY, int toX, int toY) { in sizeOfBlackWhiteBlackRunBothWays() argument 268 float result = sizeOfBlackWhiteBlackRun(fromX, fromY, toX, toY); in sizeOfBlackWhiteBlackRunBothWays() 272 int otherToX = fromX - (toX - fromX); in sizeOfBlackWhiteBlackRunBothWays() 306 private float sizeOfBlackWhiteBlackRun(int fromX, int fromY, int toX, int toY) { in sizeOfBlackWhiteBlackRun() argument 309 boolean steep = Math.abs(toY - fromY) > Math.abs(toX - fromX); in sizeOfBlackWhiteBlackRun() 314 temp = toX; in sizeOfBlackWhiteBlackRun() 315 toX = toY; in sizeOfBlackWhiteBlackRun() 319 int dx = Math.abs(toX - fromX); in sizeOfBlackWhiteBlackRun() 322 int xstep = fromX < toX ? 1 : -1; in sizeOfBlackWhiteBlackRun() 327 // Loop up until x == toX, but not beyond in sizeOfBlackWhiteBlackRun() [all …]
|
| /external/fonttools/ |
| D | tox.ini | 1 [tox] section 9 # use 'download = true' to have tox install the latest pip inside the virtualenv. argument 12 # https://github.com/tox-dev/tox/issues/791#issuecomment-518713438 21 # add -noextra to tox -e to skip installing extras and only test the core fonttools
|
| /external/scapy/ |
| D | .appveyor.yml | 35 # https://github.com/tox-dev/tox/issues/791 37 - "%PYTHON%\\python -m pip install tox coverage" 46 - "%PYTHON%\\python -m tox -- %UT_FLAGS%"
|
| /external/python/timeout-decorator/ |
| D | .travis.yml | 9 - pip install python-coveralls tox tox-travis 10 script: tox --recreate
|
| /external/json-schema-validator/src/test/suite/.github/workflows/ |
| D | ci.yml | 22 - name: Install tox 23 run: python -m pip install tox 25 run: python -m tox
|
| /external/python/portpicker/ |
| D | pyproject.toml | 5 [tool.tox] 7 [tox] 11 # minimum tox version
|
| /external/python/pyee/ |
| D | Makefile | 1 .PHONY: setup setup-conda package upload check test tox lint format build_docs serve_docs clean 25 tox: target 26 if [ -d venv ]; then . ./venv/bin/activate; fi; tox 42 rm -rf .tox
|
| /external/python/apitools/ |
| D | .travis.yml | 23 - pip install tox 25 script: tox -e $TOX_ENV 27 - if [[ "${TOX_ENV}" == "py27-oauth2client4" ]]; then tox -e coveralls; fi
|
| /external/python/mobly/.github/workflows/ |
| D | ci.yml | 24 pip install tox 26 - name: Test with tox 28 tox
|