aboutsummaryrefslogtreecommitdiffstats
path: root/.travis/downstream.d/certbot-josepy.sh
blob: 0acf9547390d4400b69914e4e31fc4be2f4b9fd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash -ex

case "${1}" in
    install)
        git clone --depth=1 https://github.com/certbot/josepy
        cd josepy
        git rev-parse HEAD
        pip install -e ".[tests]"
        ;;
    run)
        cd josepy
        pytest src
        ;;
    *)
        exit 1
        ;;
esac