diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-09-13 14:00:19 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-09-13 14:00:58 -0700 |
commit | af19fbaec968983f1ec2e5444123c9b29cd1ab0a (patch) | |
tree | d9c44f4471f1e849ac571e39e35f1fcded9d852a | |
parent | e443538d65d9c861174dad461dcf958a2b84829e (diff) | |
download | fatcat-af19fbaec968983f1ec2e5444123c9b29cd1ab0a.tar.gz fatcat-af19fbaec968983f1ec2e5444123c9b29cd1ab0a.zip |
CI: add df commands to debug out-of-space
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d47259f4..d7048f06 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -36,6 +36,8 @@ unified_test: - cp example.env .env - diesel database reset && diesel migration run - cargo build + - df -h + - df -i - cargo test -- --test-threads 1 - cargo run --bin fatcatd & - cd ../python_openapi_client @@ -43,6 +45,8 @@ unified_test: - cd ../python - cp example.env .env - pipenv install --dev --deploy + - df -h + - df -i - pipenv run pytest --cov - pipenv run ./tests/cli.sh # Just errors |