[pitivi] remove integration tests from make check target: run them with make check-integration, instead



commit a57f55029a654cac5cd27071637190951a686361
Author: Brandon Lewis <brandon_lewis alum berkeley edu>
Date:   Thu Nov 19 11:34:15 2009 -0800

    remove integration tests from make check target: run them with make check-integration, instead

 Makefile.am       |    3 +++
 tests/Makefile.am |    4 ++++
 tests/runtests.py |    2 +-
 3 files changed, 8 insertions(+), 1 deletions(-)
---
diff --git a/Makefile.am b/Makefile.am
index c5fb961..a011e1e 100755
--- a/Makefile.am
+++ b/Makefile.am
@@ -51,3 +51,6 @@ locale-uninstalled-clean:
 
 all-local: locale-uninstalled
 clean-local: locale-uninstalled-clean
+
+check-integration:
+	cd tests; make check-integration
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 948cc6d..fb66330 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -22,3 +22,7 @@ check-local:
 
 %.check: %
 	@PYTHONPATH=$(top_srcdir):$(PYTHONPATH) $(PYTHON) $(srcdir)/runtests.py $*
+
+check-integration:
+	@PYTHONPATH=$(top_srcdir):$(PYTHONPATH) $(PYTHON)\
+        $(srcdir)/test_integration.py
diff --git a/tests/runtests.py b/tests/runtests.py
index 638a0e9..6b672ff 100644
--- a/tests/runtests.py
+++ b/tests/runtests.py
@@ -3,7 +3,7 @@ import os
 import sys
 import unittest
 
-SKIP_FILES = ['common', 'runtests']
+SKIP_FILES = ['common', 'runtests', 'test_integration']
 
 def gettestnames(which):
     if not which:



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]