mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 03:08:55 -05:00
* [V3] Stop `tmp` dir showing up * [V3] Remove requirements.txt and declare in install_requires * Remove requirements.txt from tox.ini * Update and pin all dependencies and sub-dependencies * Update for breaking changes * Reformat * Update docs/requirements.txt and tox.ini requirements * Add 3.7 to identifiers and travis/tox builds * Attempt at fixing the travis build matrix * Attempt #2 * Attempt 3 * aiohttp.ClientSession.close() -> detach() in sync code * Add raven-aiohttp to requirements * Fix stuff in setup.py - Added discord.py back into requirements list - Fix typo in alabaster extra requirement Also in the Pipfile: - Removed allow_prereleases and explicitly pinned black, since this is the only dep we want a prerelease for. * Update to Rapptz/discord.py@8ccb98d395 * Add proper 3.7 build in Travis See travis-ci/travis-ci#9815 * Which version of 3.6 does Xenial install then? * Maybe we should stop pipenv installing useless stuff * Nevermind, back to specific minor version * Remove lots of WET dependency stuff * Fix egg fragment for dependency link
46 lines
1.2 KiB
INI
46 lines
1.2 KiB
INI
# tox (https://tox.readthedocs.io/) is a tool for running tests
|
|
# in multiple virtualenvs. This configuration file will run the
|
|
# test suite on all supported python versions. To use it, "pip install tox"
|
|
# and then run "tox" from this directory.
|
|
|
|
[tox]
|
|
envlist =
|
|
py36
|
|
py37
|
|
docs
|
|
style
|
|
|
|
[testenv]
|
|
description = Run unit tests with pytest
|
|
whitelist_externals =
|
|
pytest
|
|
extras = voice, test, mongo
|
|
deps =
|
|
-r{toxinidir}/dependency_links.txt
|
|
commands =
|
|
python -m compileall ./redbot/cogs
|
|
pytest
|
|
|
|
[testenv:docs]
|
|
description = Attempt to build docs with sphinx-build
|
|
whitelist_externals =
|
|
sphinx-build
|
|
basepython = python3.6
|
|
extras = docs, mongo
|
|
commands =
|
|
sphinx-build -d "{toxworkdir}/docs_doctree" docs "{toxworkdir}/docs_out" -W -bhtml
|
|
sphinx-build -d "{toxworkdir}/docs_doctree" docs "{toxworkdir}/docs_out" -W -blinkcheck
|
|
|
|
[testenv:style]
|
|
description = Stylecheck the code with black to see if anything needs changes.
|
|
whitelist_externals =
|
|
make
|
|
setenv =
|
|
# This is just for Windows
|
|
# Prioritise make.bat over any make.exe which might be on PATH
|
|
PATHEXT=.BAT;.EXE
|
|
basepython = python3.6
|
|
extras = style
|
|
commands =
|
|
make stylecheck
|