Skip to content

Commit 26cb200

Browse files
committed
Dropped all exclusions of unittests and patches -- shouldn't be necessary any longer
1 parent 0365f64 commit 26cb200

File tree

4 files changed

+5
-26
lines changed

4 files changed

+5
-26
lines changed

debian/changelog

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ pandas (0.6.1+git355-gc76a96f-1) UNRELEASED; urgency=low
22

33
* Testing fresh upstream snapshot prior release
44
* Updated pre-cythoned .c files for older Debian/Ubuntu releases
5+
* Dropped all exclusions of unittests and patches -- shouldn't be necessary
6+
any longer
57

68
-- Yaroslav Halchenko <[email protected]> Mon, 16 Jan 2012 19:31:50 -0500
79

debian/patches/series

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-
up_condition_failing_test_on_numpy

debian/patches/up_condition_failing_test_on_numpy

Lines changed: 0 additions & 23 deletions
This file was deleted.

debian/rules

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ CYTHONVER := $(shell dpkg -l cython | awk '/^ii/{print $$3;}' || echo 0)
1111
MPLVER := $(shell dpkg -l python-matplotlib | awk '/^ii/{print $$3;}' || echo 0)
1212

1313
MIN_CYTHONVER = 0.15.1
14-
EXCLUDE_MORETESTS := $(shell dpkg --compare-versions $(MPLVER) lt 1.0 && echo '|test_hist|test_plot|test_boxplot|test_corr_rank' || echo '')
14+
EXCLUDE_MORETESTS :=
15+
# $(shell dpkg --compare-versions $(MPLVER) lt 1.0 && echo '|test_hist|test_plot|test_boxplot|test_corr_rank' || echo '')
1516

1617
# Mega rule
1718
%:
@@ -48,7 +49,7 @@ ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
4849
: # Run unittests here against installed pandas
4950
export PYTHONPATH=`/bin/ls -d $$PWD/$(PACKAGE_ROOT_DIR)/usr/lib/python$*/*/`; \
5051
export MPLCONFIGDIR=$(CURDIR)/build HOME=$(CURDIR)/build; \
51-
cd build/; python$* /usr/bin/nosetests -s -v --exclude='(testFamaMacBethRolling$(EXCLUDE_MORETESTS))' pandas;
52+
cd build/; python$* /usr/bin/nosetests -s -v pandas;
5253
: # Upstream was informed about testFamaMacBethRolling failures on 32bit
5354
else
5455
: # Skip unittests due to nocheck

0 commit comments

Comments
 (0)