From: Morgan Richomme Date: Mon, 11 Sep 2017 08:29:57 +0000 (+0000) Subject: Merge "Change nginx configuration" X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=b584f4d1b522b2dc62b664c5dca33e121a2efab2;hp=f53cb19a64711f600a562242222b6e52a974d956;p=releng.git Merge "Change nginx configuration" --- diff --git a/jjb/xci/xci-daily-jobs.yml b/jjb/xci/xci-daily-jobs.yml index c39d07e39..441acf5f0 100644 --- a/jjb/xci/xci-daily-jobs.yml +++ b/jjb/xci/xci-daily-jobs.yml @@ -214,7 +214,10 @@ - string: name: XCI_LOOP default: 'daily' - + - string: + name: FUNCTEST_SUITE_NAME + default: 'daily' + description: "Daily suite name to run" builders: - description-setter: description: "Built on $NODE_NAME - Scenario: $DEPLOY_SCENARIO" @@ -233,4 +236,6 @@ name: xci-functest-builder builders: - shell: - !include-raw: ./xci-functest.sh + !include-raw: + - ../../utils/fetch_os_creds.sh + - ../functest/functest-alpine.sh diff --git a/jjb/xci/xci-functest.sh b/jjb/xci/xci-functest.sh deleted file mode 100755 index 0f58dfefc..000000000 --- a/jjb/xci/xci-functest.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - -echo "Functional testing with functest" diff --git a/modules/setup.cfg b/modules/setup.cfg new file mode 100644 index 000000000..dbe5a3709 --- /dev/null +++ b/modules/setup.cfg @@ -0,0 +1,7 @@ +[metadata] +name = opnfv +version = 5 +home-page = https://wiki.opnfv.org/display/releng/Releng + +[files] +packages = opnfv diff --git a/modules/setup.py b/modules/setup.py index 0dd635fbe..a1e9b3bb2 100644 --- a/modules/setup.py +++ b/modules/setup.py @@ -1,25 +1,22 @@ -############################################################################## +#!/usr/bin/env python + +# Copyright (c) 2017 Orange and others. +# # All rights reserved. This program and the accompanying materials # are made available under the terms of the Apache License, Version 2.0 # which accompanies this distribution, and is available at # http://www.apache.org/licenses/LICENSE-2.0 -############################################################################## - -from setuptools import setup, find_packages +import setuptools +# In python < 2.7.4, a lazy loading of package `pbr` will break +# setuptools if some other modules registered functions in `atexit`. +# solution from: http://bugs.python.org/issue15881#msg170215 +try: + import multiprocessing # noqa +except ImportError: + pass -setup( - name="opnfv", - version="danube", - packages=find_packages(), - include_package_data=True, - package_data={ - }, - url="https://www.opnfv.org", - install_requires=["paramiko>=2.0", - "mock>=2.0", - "requests!=2.12.2,>=2.10.0"], - test_requires=["nose", - "coverage>=4.0"] -) +setuptools.setup( + setup_requires=['pbr>=1.8'], + pbr=True)