Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ python:
- "pypy"
before_install:
- "pushd .."
- "git clone https://github.com/pulp/pulp.git --branch master"
- "git clone https://github.com/pulp/pulp.git --branch 2.6-release"
- "git clone https://github.com/pulp/nectar.git"
- "pushd nectar"
- "git checkout python-nectar-1.1.6-1"
Expand All @@ -15,6 +15,8 @@ install:
# This is needed to build M2Crypto
- "sudo apt-get install swig"
- "pip install -r test_requirements.txt"
# 2.5 didn't have its dependencies in its setup.py, so we need to install them too
- "pip install okaara pymongo iniparse mongoengine"
- "pushd .."
- "python nectar/setup.py develop"
- "pulp/manage_setup_pys.sh develop"
Expand All @@ -23,5 +25,5 @@ install:
- "sudo mkdir -p /etc/pulp"
- "sudo touch /etc/pulp/server.conf"
script:
- "./run-tests.py --enable-coverage --cover-min-percentage 100"
- "./run-tests.py --enable-coverage"
after_success: coveralls
4 changes: 0 additions & 4 deletions run-tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import subprocess
import sys

from pulp.devel import doc_check
from pulp.devel.test_runner import run_tests


Expand All @@ -32,9 +31,6 @@
if exit_code != 0:
sys.exit(exit_code)

# Ensure that all doc strings are present
doc_check.recursive_check(PROJECT_DIR)

PACKAGES = [PROJECT_DIR, 'pulp_python', ]

TESTS = [
Expand Down