Skip to content

Latest commit

 

History

History
35 lines (22 loc) · 828 Bytes

README.md

File metadata and controls

35 lines (22 loc) · 828 Bytes

PLplot Docker

This project provides:

(1) Dockerfiles for generating docker images for the purpose of testing PLplot on multiple linux distributions.

(2) Code to run the tests and analyze the results.

The PLplot docker image repository is here

Basic Testing

docker run plplot/XXX 2>&1 | tee XXX.txt

Where XXX is a docker image, for example:

docker run plplot/debian-latest 2>&1 | tee debian-latest.txt

Comprehensive Testing

python pull_all.py  # This will pull the latest images.
python test_all.py

Note: By default test_all.py will test two images at once, if you want to run more (or less) tests in parallel use the --max_processes argument.

python test_all.py --max_processes 10