You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ko...@apache.org on 2019/08/07 15:12:25 UTC

[couchdb] branch jenkins-junit-reports-and-jenkins-env updated: Play the same trick with nose

This is an automated email from the ASF dual-hosted git repository.

kocolosk pushed a commit to branch jenkins-junit-reports-and-jenkins-env
in repository https://gitbox.apache.org/repos/asf/couchdb.git


The following commit(s) were added to refs/heads/jenkins-junit-reports-and-jenkins-env by this push:
     new 30e416c  Play the same trick with nose
30e416c is described below

commit 30e416c3b9f6447cd6a26b174a9631718dea9cfa
Author: Adam Kocoloski <ko...@apache.org>
AuthorDate: Wed Aug 7 11:12:13 2019 -0400

    Play the same trick with nose
---
 Jenkinsfile | 2 +-
 Makefile    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index e591882..1a46ce1 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -28,7 +28,7 @@ cd src/mango
 python3 -m venv .venv
 cat .venv/bin/pip3
 .venv/bin/python3 -m pip install -r requirements.txt
-../../dev/run -n 1 --admin=testuser:testpass .venv/bin/nosetests
+../../dev/run -n 1 --admin=testuser:testpass '.venv/bin/python3 -m nose'
 cd ../../
 make elixir || (build-aux/logfile-uploader.py && false)
 '''
diff --git a/Makefile b/Makefile
index faabee6..8f85ab8 100644
--- a/Makefile
+++ b/Makefile
@@ -371,7 +371,7 @@ mango-test: devclean all
 	@cd src/mango && \
 		python3 -m venv .venv && \
 		.venv/bin/python3 -m pip install -r requirements.txt
-	@cd src/mango && ../../dev/run -n 1 --admin=testuser:testpass .venv/bin/nosetests
+	@cd src/mango && ../../dev/run -n 1 --admin=testuser:testpass '.venv/bin/python3 -m nose'
 
 ################################################################################
 # Developing