Skip to content

Commit

Permalink
chore(ci): update environment variables
Browse files Browse the repository at this point in the history
Specifically, adding `FORCE_COLOR` to ensure we have coloured output (it
is prettier afterall), and making sure `HATCH_VERBOSE` is always enabled
in case there's an error.

Signed-off-by: JP-Ellis <[email protected]>
  • Loading branch information
JP-Ellis committed Apr 10, 2024
1 parent ca6072d commit 10c0b8d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ concurrency:

env:
STABLE_PYTHON_VERSION: "3.12"
HATCH_VERBOSE: 1
HATCH_VERBOSE: "1"
FORCE_COLOR: "1"
CIBW_BUILD_FRONTEND: build

jobs:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ on:

env:
STABLE_PYTHON_VERSION: "3.12"
PYTEST_ADDOPTS: --color=yes
FORCE_COLOR: "1"
HATCH_VERBOSE: "1"

jobs:
build:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ concurrency:
env:
STABLE_PYTHON_VERSION: "3.12"
PYTEST_ADDOPTS: --color=yes
HATCH_VERBOSE: 1
HATCH_VERBOSE: "1"
FORCE_COLOR: "1"

jobs:
test-container:
Expand Down

0 comments on commit 10c0b8d

Please sign in to comment.