diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 610e243dde27..806f2cc34e61 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -69,13 +69,13 @@ jobs: source $VENV python terminal.py -t | tee result.txt grep "================================ Integration Test Summary ================================" result.txt -A100 | tail --bytes=2000 > summary.txt + echo >> summary.txt - name: Run Integration Tests Coverage Report id: integration-tests-coverage run: | source $VENV python terminal.py -t --coverage | tee result.txt - echo >> summary.txt sed -n '/Integration Coverage Summary/,$p' result.txt >> summary.txt - name: Upload summary to Slack diff --git a/.github/workflows/macos-build.yml b/.github/workflows/macos-build.yml index 0cbf96e74768..3d8652ab0507 100644 --- a/.github/workflows/macos-build.yml +++ b/.github/workflows/macos-build.yml @@ -297,11 +297,11 @@ jobs: run: | extract/OpenBBTerminal.pkg/Payload/Applications/OpenBB\ Terminal/.OpenBB/OpenBBTerminal -t -s forecast cryptocurrency reports alternative economy futures econometrics dashboards portfolio stocks/test_stocks_options_screen.openbb stocks/test_stocks_options.openbb forex etf stocks/test_stocks_fa.openbb | tee result.txt grep "================================ Integration Test Summary ================================" result.txt -A100 | tail --bytes=2000 > summary.txt + echo >> summary.txt - name: Run Integration Tests Coverage Report run: | extract/OpenBBTerminal.pkg/Payload/Applications/OpenBB\ Terminal/.OpenBB/OpenBBTerminal -t --coverage | tee result.txt - echo >> summary.txt sed -n '/Integration Coverage Summary/,$p' result.txt >> summary.txt - name: Upload summary to Slack diff --git a/.github/workflows/windows10_build.yml b/.github/workflows/windows10_build.yml index 141242664769..13f35d69be26 100644 --- a/.github/workflows/windows10_build.yml +++ b/.github/workflows/windows10_build.yml @@ -106,11 +106,11 @@ jobs: run: | dist\OpenBBTerminal\OpenBBTerminal.exe -t -s forecast cryptocurrency reports alternative economy futures econometrics dashboards portfolio stocks/test_stocks_options_screen.openbb stocks/test_stocks_options.openbb forex etf stocks/test_stocks_fa.openbb | tee result.txt Select-String "================================ Integration Test Summary ================================" result.txt -Context 0,100 | Select-Object -Last 2000 | Out-File summary.txt + Write-output `n >> summary.txt - name: Run Integration Tests Coverage Report run: | dist\OpenBBTerminal\OpenBBTerminal.exe -t --coverage | tee result.txt - echo/ >> summary.txt Select-String "============================== Integration Coverage Summary ==============================" result.txt -Context 0,300 | Select-Object -Last 2000 >> summary.txt - name: Upload summary to Slack