Force colour in CI
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Deukhoofd 2022-06-11 19:27:47 +02:00
parent 3c1fc4615f
commit 0c076dd711
Signed by: Deukhoofd
GPG Key ID: F63E044490819F6F
1 changed files with 4 additions and 4 deletions

View File

@ -7,22 +7,22 @@ steps:
- name: test-debug-linux - name: test-debug-linux
image: deukhoofd/linux64builder image: deukhoofd/linux64builder
commands: commands:
- cargo nextest run - cargo nextest run --color=always
- name: test-release-linux - name: test-release-linux
image: deukhoofd/linux64builder image: deukhoofd/linux64builder
commands: commands:
- cargo nextest run --release - cargo nextest run --release --color=always
depends_on: depends_on:
- test-debug-linux - test-debug-linux
- name: test-miri-release-linux - name: test-miri-release-linux
image: deukhoofd/linux64builder image: deukhoofd/linux64builder
commands: commands:
- cargo miri test --release - cargo miri test --release --color=always
depends_on: depends_on:
- test-debug-linux - test-debug-linux
- name: test-coverage - name: test-coverage
image: deukhoofd/linux64builder image: deukhoofd/linux64builder
commands: commands:
- cargo llvm-cov nextest - cargo llvm-cov nextest --color=always
depends_on: depends_on:
- test-debug-linux - test-debug-linux