Skip to content

Commit

Permalink
Remove 100% coverage requirement
Browse files Browse the repository at this point in the history
Older Elasticsearch versions will not support all of the features
of PyEQS (such as aggregations).  We do not want these tests to
run against old ES versions, so we skip them.  However, this means
that tests run against older ES versions will no longer maintain
100% test coverage.  For now, our only hope is to rely on ourselves
to maintain discipline and continue to keep 100% coverage against
the newest version of ES.
  • Loading branch information
andrewgross committed Aug 20, 2014
1 parent a386b4d commit abb4e79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ run_test:
echo "Running \033[0;32m$(suite)\033[0m test suite"; \
make prepare && \
nosetests --stop --with-coverage --cover-package=$(PACKAGE) \
--cover-branches --cover-min-percentage=100 --cover-erase --verbosity=2 -s tests/$(suite) ; \
--cover-branches --cover-erase --verbosity=2 -s tests/$(suite) ; \
fi

install_deps:
Expand Down

0 comments on commit abb4e79

Please sign in to comment.