Skip to content

Commit

Permalink
chore: Revert "chore: Switch Elixir tests back to pipes"
Browse files Browse the repository at this point in the history
This partially reverts commit 765272c
by restoring the file-based solution.

Signed-off-by: Austin Ziegler <austin@zieglers.ca>
  • Loading branch information
halostatue committed Jan 9, 2025
1 parent 765272c commit f65cd06
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,12 +95,18 @@ jobs:
- run: mix test
working-directory: ./elixir

# Using MIX_QUIET=1 should work for this, except that with older versions
# of Elixir and OTP (OTP 25 or earlier), there's a persistent truncation
# of the output as the generator VM shuts down before stdout is complete
# which is not exhibited with Mix shell write but is exhibited with IO
# write.
- run: |
mix app_identity generate --stdout |
mix app_identity run --diagnostic --stdin --strict
# mix app_identity generate --stdout |
# mix app_identity run --diagnostic --stdin --strict
mix app_identity generate
mix app_identity run --diagnostic --strict app-identity-suite-elixir.json
rm -f app-identity-suite-elixir.json
working-directory: ./elixir
env:
MIX_QUIET: 1
- run: mix credo --strict
working-directory: ./elixir
Expand Down

0 comments on commit f65cd06

Please sign in to comment.