1
0
mirror of https://github.com/rancher/os.git synced 2025-09-04 00:04:25 +00:00

Modify the tests to work with multiple architectures

This commit is contained in:
Ivan Mikushin
2016-03-30 17:48:31 -07:00
parent 99c3207b14
commit 95d24ac67d
7 changed files with 28 additions and 15 deletions

View File

@@ -1,12 +1,18 @@
from __future__ import print_function
import itertools as it
import os
import subprocess
import time
import pytest
ros_test = 'ros-test'
arch = os.environ['ARCH']
suffix = ''
if arch != 'amd64':
suffix = '_' + arch
def iter_lines(s):