-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
👷 [github] Use FORCE_COLOR instead of
nox --force-color
(#778)
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -93,7 +93,7 @@ jobs: | |
- name: Run Nox | ||
run: | | ||
nox --force-color --python=${{ matrix.python }} | ||
nox --python=${{ matrix.python }} | ||
- name: Upload coverage data | ||
if: always() && matrix.session == 'tests' | ||
|
@@ -144,11 +144,11 @@ jobs: | |
|
||
- name: Combine coverage data and display human readable report | ||
run: | | ||
nox --force-color --session=coverage | ||
nox --session=coverage | ||
- name: Create coverage report | ||
run: | | ||
nox --force-color --session=coverage -- xml | ||
nox --session=coverage -- xml | ||
- name: Upload coverage report | ||
uses: codecov/[email protected] |