mirror of
https://github.com/openshift/openshift-ansible.git
synced 2026-02-05 06:46:04 +01:00
Prow CI currently runs several commands before e2e tests. These commands should be placed in our repo
6 lines
201 B
Bash
6 lines
201 B
Bash
#!/bin/bash
|
|
|
|
# This script runs tox tests in test container
|
|
echo "${USER:-default}:x:$(id -u):$(id -g):Default User:${HOME:-/tmp}:/sbin/nologin" >> /etc/passwd
|
|
tox 2>&1 | tee /tmp/artifacts/output.log
|