I am trying to run some tests by calling the pytest command at a command prompt in the directory containing the tests. In the end, however, I only see how many tests passed or failed, but I donβt see which of them or the trace failed tests (see screenshot below).
Before I saw these things, and I don't remember changing anything in the Pytest configuration. What could be the problem?

Update
What is even stranger is that when I run some test scripts that I am sure were displayed in order to give test results when running individually with pytest , the tests pass:
kurt@kurt-ThinkPad :~/dev/clones6/ipercron-compose/test$ pytest test_api.py ====================== test session starts ======================= platform linux2 -- Python 2.7.12, pytest-3.0.5, py-1.4.32, pluggy-0.4.0 rootdir: /home/kurt/dev/clones6/ipercron-compose/test, inifile: plugins: flask-0.10.0 collected 5 items test_api.py ..... ==================== 5 passed in 4.20 seconds ==================== kurt@kurt-ThinkPad :~/dev/clones6/ipercron-compose/test$ pytest test_furion.py ====================== test session starts ======================= platform linux2 -- Python 2.7.12, pytest-3.0.5, py-1.4.32, pluggy-0.4.0 rootdir: /home/kurt/dev/clones6/ipercron-compose/test, inifile: plugins: flask-0.10.0 collected 6 items test_furion.py ...... ==================== 6 passed in 7.84 seconds ==================== kurt@kurt-ThinkPad :~/dev/clones6/ipercron-compose/test$ pytest test_furion2.py ====================== test session starts ======================= platform linux2 -- Python 2.7.12, pytest-3.0.5, py-1.4.32, pluggy-0.4.0 rootdir: /home/kurt/dev/clones6/ipercron-compose/test, inifile: plugins: flask-0.10.0 collected 4 items test_furion2.py .... =================== 4 passed in 12.91 seconds ====================
Could there be any difference between calling the tests using the pytest or the pytest [filename] command?
source share