Make expect_tests not try to be smart about pyc.

This isn't the concern of the testing harness (and this code doesn't work
anyway).

R=eseidel@chromium.org, stip@chromium.org
BUG=402067

Review URL: https://codereview.chromium.org/466043003
2 files changed
tree: 7042c8845fc012cd4cbbb8c7ce62a8d11cbcc14f
  1. expect_tests/
  2. scripts/
  3. .gitignore
  4. codereview.settings
  5. README.md
  6. requirements.txt
  7. setup.py
README.md

Expect Tests

Expect Tests is a test framework which:

  • Is parallel by default
  • Collects coverage information by default
  • Allows easy test-case generation
  • Is compatible with unittest
  • Provides easy test globbing and debugging

Fiddly details

If you have a package that you‘d like to exclude from expect_tests’ search, simply define a variable _expect_tests_stop_walk = True in the package‘s __init__.py and expect_tests won’t search further in that directory tree.