File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -202,12 +202,36 @@ podman run -it --rm -v $PWD:/repo:Z --entrypoint onceover ghcr.io/voxpupuli/voxb
202202
203203Onceover allows you to run tests against your control-repository.
204204
205+ Initialize onceover:
206+
207+ ``` shell
208+ podman run -it --rm -v $PWD :/repo:Z --entrypoint onceover ghcr.io/voxpupuli/voxbox:latest init
209+ ```
210+
205211Running spec tests:
206212
207213``` shell
208214podman run -it --rm -v $PWD :/repo:Z --entrypoint onceover ghcr.io/voxpupuli/voxbox:8 run spec
209215```
210216
217+ Running spec test with internal git+ssh modules in Puppetfile:
218+
219+ ``` shell
220+ podman run -it --rm \
221+ -v ~ /.ssh:/root/.ssh:Z \
222+ -v $PWD :/repo:Z \
223+ --entrypoint onceover ghcr.io/voxpupuli/voxbox:latest run spec
224+ ```
225+
226+ Running spec tests with puppet output:
227+
228+ ``` shell
229+ podman run -it --rm \
230+ -v $PWD :/repo:Z \
231+ -e SHOW_PUPPET_OUTPUT=true \
232+ --entrypoint onceover ghcr.io/voxpupuli/voxbox:latest run spec
233+ ```
234+
211235Other commands are:
212236
213237| Command | What it does |
You can’t perform that action at this time.
0 commit comments