Skip to content

Commit 61b3417

Browse files
committed
Remove tap-tap package from test workflow
Simplify GitHub Actions test workflow by removing tap-tap package and additional TAP formatter step. This reduces unnecessary complexity in the testing process.
1 parent 2ce4f95 commit 61b3417

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up environment
2020
run: |
2121
sudo apt-get update
22-
sudo apt-get install -y bc tap-tap
22+
sudo apt-get install -y bc
2323
2424
- name: Make scripts executable
2525
run: |
@@ -30,11 +30,6 @@ jobs:
3030
- name: Run tests
3131
run: |
3232
./test/test_runner.sh
33-
34-
- name: Run tests with TAP formatter (for nicer output)
35-
if: always() # Run even if the previous step failed
36-
run: |
37-
./test/test_runner.sh | tap-tap
3833
3934
lint:
4035
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)