Skip to content

Commit

Permalink
#8: Fixed paths for tests and coverage report.
Browse files Browse the repository at this point in the history
  • Loading branch information
guilhermechapiewski committed Feb 15, 2009
1 parent 18d996d commit 95f5c47
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion run_coverage.sh
Expand Up @@ -3,5 +3,5 @@
coverage -e
coverage -x tests/test.py > /dev/null
echo "\n"
coverage -r *.py
coverage -r src/simple_db_migrate/*.py
echo "\n"
4 changes: 2 additions & 2 deletions tests/test.py
Expand Up @@ -2,9 +2,9 @@
import sys
import unittest

sys.path.insert(0, os.path.abspath("."))
sys.path.insert(0, os.path.abspath("./src/simple_db_migrate"))
sys.path.insert(0, os.path.abspath("./tests"))
sys.path.insert(0, os.path.abspath("../"))
sys.path.insert(0, os.path.abspath("../src/simple_db_migrate"))
sys.path.insert(0, os.path.abspath("../tests"))

if __name__ == "__main__":
Expand Down

0 comments on commit 95f5c47

Please sign in to comment.