c50ab412a0
- Dockerfile file is intended for running test cases without using tox - infrared_plugin/Dockerfile file is intended to run Tobiko IR plugin - docker-compose file is intended to emulate the tox experience by using docker All images are build staring from official CentOS 8 image. Change-Id: I2f57f6e1c9c6161cef9448d25027d784ebd37e2c
33 lines
549 B
YAML
33 lines
549 B
YAML
---
|
|
|
|
version: '3.4'
|
|
services:
|
|
py3:
|
|
build:
|
|
context: .
|
|
target: tests
|
|
args:
|
|
OS_TEST_PATH: ./tests/unit
|
|
functional:
|
|
build:
|
|
context: .
|
|
target: tests
|
|
args:
|
|
OS_TEST_PATH: ./tests/functional
|
|
scenario:
|
|
build:
|
|
context: .
|
|
target: tests
|
|
args:
|
|
OS_TEST_PATH: ./tests/scenario
|
|
faults:
|
|
build:
|
|
context: .
|
|
target: tests
|
|
args:
|
|
OS_TEST_PATH: ./tests/faults
|
|
infrared:
|
|
build:
|
|
context: ./infrared_plugin
|
|
target: tobiko_plugin
|