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 = .