Skip to content

Commit

Permalink
fix integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
shravanasati committed Jul 15, 2024
1 parent 65f8249 commit 9619e7b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,8 @@ jobs:
- name: Run a command
run: |
timeout 5 stella run ls | true
# run the command for 5s, if the status code is 124 (timeout)
# then it's fine since stella never exits itself if everything
# is right. however, exit with non-zero if its not 124 (which means
# something bad happened)
timeout 5 stella run ls || ( [[ $? -eq 124 ]] ; )

0 comments on commit 9619e7b

Please sign in to comment.