-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: doctor checks for "set -e" in test scripts #207
Changes from 5 commits
7b1d50a
895c00a
85fbe41
1765a15
e4f2cdb
222c7d8
5e1e113
272ae1a
59299bd
ee5df7f
0da0662
adc39aa
8feb3a4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
source /usr/src/upgrade-test-scripts/env_setup.sh | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#!/bin/bash | ||
set -e | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. docs say...
you didn't want to risk compat problems? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yeah, but I should follow the advice. updated. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I had to revert it to get to green. Something for another time. |
||
|
||
source /usr/src/upgrade-test-scripts/env_setup.sh | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,6 @@ import { | |
getUser, | ||
newOfferId, | ||
waitForBlock, | ||
|
||
openVault, | ||
adjustVault, | ||
closeVault, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,6 @@ import { | |
GOV2ADDR, | ||
GOV3ADDR, | ||
USER1ADDR, | ||
|
||
agd, | ||
agoric, | ||
calculateWalletState, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
#!/bin/bash | ||
set -e | ||
|
||
source /usr/src/upgrade-test-scripts/env_setup.sh | ||
|
||
yarn ava post.test.js |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
#!/bin/bash | ||
set -e | ||
|
||
source /usr/src/upgrade-test-scripts/env_setup.sh | ||
|
||
yarn ava post.test.js | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
source /usr/src/upgrade-test-scripts/env_setup.sh | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
# source /usr/src/upgrade-test-scripts/env_setup.sh | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
echo check for USDC in psm pairs | ||
agd query vstorage children published.psm.IST | grep USDC |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#!/bin/bash | ||
set -e | ||
source /usr/src/upgrade-test-scripts/env_setup.sh | ||
|
||
yarn ava post.test.js |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
# source /usr/src/upgrade-test-scripts/env_setup.sh | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#!/bin/bash | ||
set -e | ||
source /usr/src/upgrade-test-scripts/env_setup.sh | ||
|
||
yarn ava post.test.js |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#!/bin/bash | ||
set -e | ||
|
||
echo "[$PROPOSAL] Recording the auctioneer instance" | ||
./saveAuctionInstance.js | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is the prettier style set up to stick?
or was this just a 1-time?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks for inquiring. It's one time and I didn't know why CI hadn't errored on it. Looks like
--write
makes--check
only warn because it's updating: https://github.com/Agoric/agoric-3-proposals/actions/runs/12125081638/job/33804228478I'll fix it