1
0
mirror of https://github.com/rancher/os.git synced 2025-09-03 15:54:24 +00:00

rename tests package to rostest

This commit is contained in:
Ivan Mikushin
2015-11-18 14:27:54 +05:00
parent b886bce539
commit 3395ede89d
12 changed files with 9 additions and 9 deletions

View File

@@ -2,7 +2,7 @@ from __future__ import print_function
import itertools as it
import pytest
import subprocess
import rancherostest.util as u
import rostest.util as u
@pytest.fixture(scope="module")

View File

@@ -1,5 +1,5 @@
import pytest
import rancherostest.util as u
import rostest.util as u
import string
import subprocess
import yaml

View File

@@ -2,7 +2,7 @@ from __future__ import print_function
import itertools as it
import pytest
import subprocess
import rancherostest.util as u
import rostest.util as u
@pytest.fixture(scope="module")

View File

@@ -1,5 +1,5 @@
import pytest
import rancherostest.util as u
import rostest.util as u
import subprocess

View File

@@ -1,5 +1,5 @@
import pytest
import rancherostest.util as u
import rostest.util as u
import subprocess

View File

@@ -1,5 +1,5 @@
import pytest
import rancherostest.util as u
import rostest.util as u
import subprocess

View File

@@ -4,7 +4,7 @@ setup(
name='RancherOSIntegrationTests',
version='0.1',
packages=[
'rancherostest'
'rostest'
],
license='ASL 2.0',
long_description=open('README.txt').read(),

View File

@@ -4,11 +4,11 @@ skipsdist=True
[testenv]
deps=-rrequirements.txt
commands=py.test -s --durations=20 rancherostest {posargs}
commands=py.test -s --durations=20 rostest {posargs}
[testenv:flake8]
deps=flake8
commands=flake8 rancherostest
commands=flake8 rostest
[flake8]
max-line-length = 120