Skip to content

Commit

Permalink
Added a stub for pygmy.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexSkrypnyk authored Feb 27, 2019
1 parent 7669b6f commit d4c9125
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,8 @@ RUN curl -L -o /tmp/bats.tar.gz https://github.com/bats-core/bats-core/archive/v
RUN curl -L https://github.com/ahoy-cli/ahoy/releases/download/2.0.0/ahoy-bin-`uname -s`-amd64 -o /usr/local/bin/ahoy \
&& chmod +x /usr/local/bin/ahoy \
&& ahoy --version

# Install a stub for pygmy.
# Some frameworks may require presence of pygmy to run, but pygmy is not required in CI container.
RUN touch /usr/local/bin/pygmy \
&& chmod +x /usr/local/bin/pygmy
8 changes: 8 additions & 0 deletions goss.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -146,3 +146,11 @@ command:
- Bats 1.1.0
stderr: []
timeout: 10000

which pygmy:
exit-status: 0
stdout:
- /usr/local/bin/pygmy
stderr: []
timeout: 10000

0 comments on commit d4c9125

Please sign in to comment.