From 0bd17a7baf90637aa248281c2b6984ad9c8b2970 Mon Sep 17 00:00:00 2001 From: Teo Date: Thu, 16 Jan 2025 22:11:13 +0100 Subject: [PATCH] Remove old tox.ini Tox was removed in #606, hence no point to keep this file hanging around Signed-off-by: Teo --- tox.ini | 47 ----------------------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 tox.ini diff --git a/tox.ini b/tox.ini deleted file mode 100644 index b4167ae3e..000000000 --- a/tox.ini +++ /dev/null @@ -1,47 +0,0 @@ -# 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] -env_list = - 3.13 - 3.12 - 3.11 - 3.10 - 3.9 - 3.8 - 3.7 -; skip_missing_interpreters = true - -[testenv] -deps = - pytest - pytest-asyncio - pytest-mock - pytest-vcr - pytest-depends - pyfakefs - requests_mock - coverage - mypy: mypy - types-requests - psutil - openai - langchain-core - langchain - termcolor - python-dotenv - -e . -commands = - coverage run --source . -m pytest - coverage report -m - coverage xml - mypy: mypy . -passenv = - OPENAI_API_KEY - AGENTOPS_API_KEY - -[coverage:run] -branch = True -source = .