This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# This amulet test deploys the bundles.yaml file in this directory. | |
import os | |
import unittest | |
import yaml | |
import amulet | |
seconds_to_wait = 720 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This script sets up the requirements for amulet tests. | |
set -x | |
# Check if amulet is installed before adding the stable repository and updating apt-get. | |
dpkg -s amulet | |
if [ $? -ne 0 ]; then | |
sudo add-apt-repository -y ppa:juju/stable |
NewerOlder