Instructions to run integrations tests fail on tox
See original GitHub issueAdditional environment details (Operating System, Cloud provider, etc):
Ubuntu 14.04, Python 2.7.6
Steps to reproduce the issue:
- Follow instructions at https://github.com/DataDog/integrations-core/blob/e3985fe43853f6ee3bb11e8d9d20a18ca12ae340/docs/dev/README.md
Describe the results you received:
$ tox
ERROR: No setup.py file found. The expected location is:
/home/sday/src/DataDog/integrations-core/setup.py
You can
1. Create one:
https://packaging.python.org/tutorials/distributing-packages/#setup-py
2. Configure tox to avoid running sdist:
http://tox.readthedocs.io/en/latest/example/general.html#avoiding-expensive-sdist
Describe the results you expected:
Tests should run.
Additional information you deem important (e.g. issue happens only occasionally):
Issue Analytics
- State:
- Created 5 years ago
- Comments:6 (6 by maintainers)
Top Results From Across the Web
General tips and tricks — tox 3.4.0 documentation
When a command (defined by commands = in tox.ini ) fails, it has a non-zero exit code, and an InvocationError exception is raised...
Read more >error in integration test using tox #183 - OpenKMIP/PyKMIP
We are trying to test open source KMIP server PYKMIP. For the same we have used tox utility which runs unit and integration...
Read more >unable to run test using tox.ini file
I was trying to run the below test via tox.ini file. from services.snowflake_api import SnowflakeApi from unittest import TestCase from mock ...
Read more >Running Commands with Tox
The first thing to configure tox to do is to run the tests for a package. The most minimal tox file for a...
Read more >Continuous Integration testing with GitHub Actions using ...
Creating a new workflow · Specifying branches · Setting up jobs with a build matrix · Job instructions · Failed tests because of...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Looks good:
@stevvooe can you try again running the tests with
tox
from the master branch?cd kubernates_state && tox
should work now, let me know how it goes.