
Nodeset was not set so it tries to run the gate on the default host, since the pylint gate is running in python2.7 it fails. So set it to ubuntu-xenial. Also fix python2.7 because it was failing as well. Story: 2009101 Task: 43149 Signed-off-by: Charles Short <charles.short@windriver.com> Change-Id: I7b3430fbf9a77ba6796e0b12136d0a266cba078e
13 lines
176 B
Python
13 lines
176 B
Python
#
|
|
# Copyright (c) 2020 Wind River Systems, Inc.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
import setuptools
|
|
|
|
|
|
setuptools.setup(
|
|
setup_requires=['pbr>=0.5'],
|
|
pbr=True)
|