Guest User

Untitled

a guest
Jan 22nd, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. find . -name tests.py -print0 | xargs -0 -Ixxx ./manage.py test xxx --settings=project_name.conf.test.settings
  2.  
  3. OSError: No such file /Users/user/Projects/project_name/{}
  4.  
  5. nosetests --verbosity 1 ./project_name/backend/tests.py
  6. ./project_name/contrib/auth/tests.py
  7. ./project_name/frontend/tests.py
  8. --failed --stop --nocapture --debug=DEBUG --nologcapture
  9. To reuse old database "test_db" for speed, set env var REUSE_DB=1.
  10. To reuse old database "test_db1" for speed, set env var REUSE_DB=1.
  11. Creating test database for alias 'default'...
  12. Creating schema msg
  13. Creating schema dict
  14. Creating test database for alias 'db2'...
  15. Creating schema msg
  16. Creating schema dict
  17. E
  18. ======================================================================
  19. ERROR: Failure: OSError (No such file /Users/user/Projects/project_name/{})
  20. ----------------------------------------------------------------------
  21. Traceback (most recent call last):
  22. File "/Users/user/.virtualenvs/project_name/lib/python2.7/site-packages/nose/failure.py", line 39, in runTest
  23. raise self.exc_class(self.exc_val)
  24. OSError: No such file /Users/user/Projects/project_name/{}
  25.  
  26. ----------------------------------------------------------------------
  27. Ran 1 test in 0.001s
  28.  
  29. FAILED (errors=1)
  30. Destroying test database for alias 'default'...
  31. Destroying test database for alias 'db2'...
  32.  
  33. find . -name tests.py -print0 | xargs -0 -Ixxx ./manage.py test xxx --settings=project_name.conf.test.settings
Add Comment
Please, Sign In to add comment