Skip to content
This repository has been archived by the owner on Apr 27, 2023. It is now read-only.

Commit

Permalink
Add NO_COLOR env var when run the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
TheAwiteb committed Mar 14, 2023
1 parent 2d1077c commit 876c365
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,7 @@ jobs:
- name: Clippy 👾
run: cargo clippy --all-features --all-targets -- -D warnings
- name: Tests 🧪
run: cargo test --all-features --all-targets
run: |
# Disable colored output in tests, to test the diagnostics
export NO_COLOR=1
cargo test --all-features --all-targets

0 comments on commit 876c365

Please sign in to comment.