Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Valentin Reis
argotest
Commits
93d82e6e
Commit
93d82e6e
authored
Dec 07, 2018
by
Valentin Reis
Browse files
Added summary README
parent
59c5aa66
Pipeline
#4586
passed with stage
in 6 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
README.md
0 → 100644
View file @
93d82e6e
#### (experimental) Argo integration testing
This small repository contains the minimal code necessary to run
integration tests across the argo stack, using various applications.
It leverages the argopkgs repo, but overrides some sources in it with
their master branch counterparts. see file
`default.nix`
for details.
The file
`./integration.sh`
is provided as a convenience and should be
all that is necessary to run these tests on a nix-enabled machine.
The real intended usage is to override some of the source with a WIP version,
as part of development or continuous integration. This gitlab CI snippets shows
how to do this on a nix-enabled runner:
```
{.yml}
integration.test:
stage: test
script:
- BUILD=$PWD
- cd `mktemp -d`
- git clone https://xgitlab.cels.anl.gov/argo/argotest.git
- cd argotest
- nix-shell -A test --run ./integration.hs --arg nrm-src $BUILD
except:
- /^wip\/.*/
- /^WIP\/.*/
tags:
- integration
```
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment