Skip to content

Commit

Permalink
Add Python tests
Browse files Browse the repository at this point in the history
  • Loading branch information
HazenBabcock committed Nov 26, 2016
1 parent d8dc509 commit 6209b67
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions image_names.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,18 @@
# Image names and directories as a list.
#

names = [["plplot/arch-linux", "arch_linux"],
["plplot/centos-latest", "centos_latest"],
["plplot/debian-latest", "debian_latest"],
["plplot/debian-stable", "debian_stable"],
["plplot/fedora-latest", "fedora_latest"],
["plplot/opensuse-tumbleweed", "opensuse_tumbleweed"],
["plplot/ubuntu-latest", "ubuntu_latest"]]
# Distro test images.
distro_test = [["plplot/arch-linux", "arch_linux"],
["plplot/centos-latest", "centos_latest"],
["plplot/debian-latest", "debian_latest"],
["plplot/debian-stable", "debian_stable"],
["plplot/fedora-latest", "fedora_latest"],
["plplot/opensuse-tumbleweed", "opensuse_tumbleweed"],
["plplot/ubuntu-latest", "ubuntu_latest"]]

# Python test images.
python_test = [["plplot/debian-latest-python27", "debian_latest_python27"],
["plplot/debian-latest-python34", "debian_latest_python34"]]

# All the test images.
names = distro_test + python_test

0 comments on commit 6209b67

Please sign in to comment.