-
Notifications
You must be signed in to change notification settings - Fork 10
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
add features and tests #2
Conversation
…oracle in remove_liquidity
…er_in: this prevents hackers from stealing from spot wallets
…into feat/tests
… accommodate for future updates
.github/workflows/unit-tests.yaml
Outdated
@@ -0,0 +1,30 @@ | |||
name: unit-tests-boa | |||
|
|||
on: ["push", "pull_request"] |
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.
just pick either push or pull_request, using both generates twice the same job for every commit in a PR
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.
requirements.txt
Outdated
@@ -19,5 +19,5 @@ pdbpp | |||
hypothesis>=6.68.1 | |||
|
|||
# vyper and dev framework: | |||
git+https://github.com/vyperlang/titanoboa@40f5bfcc2afe212bb5a6f5026148f3625596ded7 | |||
git+https://github.com/vyperlang/titanoboa@b5e9fb96d1424ed5cc5a6af03391d885439c83e5 |
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.
It'd be nice to add a tag to the titanoboa commit
tests/utils/simulation_int_many.py
Outdated
|
||
|
||
def get_data(fname): | ||
with open("download/{0}-1m.json".format(fname), "r") as f: |
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.
Where's this coming from?
No description provided.