An open API service indexing awesome lists of open source software.

https://github.com/offa/cet

Simple test execution, mostly for container environments.
https://github.com/offa/cet

container container-test cpp cpp17 systemtesting

Last synced: 16 days ago
JSON representation

Simple test execution, mostly for container environments.

Awesome Lists containing this project

README

          

# cet – Container Environment Test

[![CI](https://github.com/offa/cet/workflows/ci/badge.svg)](https://github.com/offa/cet/actions)
[![GitHub release](https://img.shields.io/github/release/offa/cet.svg)](https://github.com/offa/cet/releases)
[![License](https://img.shields.io/badge/license-GPLv3-yellow.svg)](LICENSE)
[![C++](https://img.shields.io/badge/c++-17-green.svg)]()

Simple test execution, mostly for container environments.

The tests are executed *within* the environment under tests.

### Configuration

Configuration is done through a Yaml file (default: `cet.yml`):

###### Example

```yml
files:
- /bin/gcc
- /bin/g++
- /tmp/example/file1.conf

directories:
- /usr/lib/gcc
- /usr/lib/clang
- /tmp/dir/example

envs:
- CC
- CXX
- name: ENV_WITH_VALUE
value: /bin/true
```