summaryrefslogtreecommitdiffstats
path: root/integration_test
diff options
context:
space:
mode:
authorMatan Kushner <hello@matchai.me>2019-06-06 13:18:00 +0100
committerGitHub <noreply@github.com>2019-06-06 13:18:00 +0100
commit8239fbd12befad1126e677fa083ce73947d74d8c (patch)
treef2d7a82f92c5f696e77a70fea39c7b56ac6b3875 /integration_test
parentbb220bb5a056b28c6457d2f5c75c53184a2cbe77 (diff)
Refactor integration tests (#71)
- Create subcommands to be able to print modules independently - `starship prompt` will print the full prompt - `starship module <MODULE_NAME>` will print a specific module e.g. `starship module python` - Added `--path` flag to print the prompt or modules without being in a specific directory - Added `--status` flag to provide the status of the last command, instead of requiring it as an argument - Refactored integration tests to be end-to-end tests, since there was no way in integration tests to set the environment variables for a specific command, which was required for the `username` module - Moved e2e tests to `tests/testsuite` to allow for a single binary to be built - Tests will build/run faster - No more false positives for unused functions - Added tests for `username` - Removed codecov + tarpaulin 😢
Diffstat (limited to 'integration_test')
-rwxr-xr-xintegration_test7
1 files changed, 1 insertions, 6 deletions
diff --git a/integration_test b/integration_test
index 81c7ba3b2..cf91a2134 100755
--- a/integration_test
+++ b/integration_test
@@ -6,9 +6,6 @@ if ! (docker --version); then
exit 1
fi
-printf 'Pulling latest docker image'
-docker pull starshipcommand/starship-test
-
printf 'Building test docker image:\n'
docker build -f tests/Dockerfile \
--tag starshipcommand/starship-test \
@@ -16,6 +13,4 @@ docker build -f tests/Dockerfile \
.
printf 'Running test suite:\n'
-# `seccomp=unconfined` is needed to allow tarpaulin to disable ASLR
-# Details found here: https://github.com/xd009642/tarpaulin/issues/146
-docker run --rm --security-opt seccomp=unconfined -v $(pwd):/starship starshipcommand/starship-test
+docker run --rm -v $(pwd):/starship starshipcommand/starship-test