-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Remove Bluebird.try #3263
Remove Bluebird.try #3263
Conversation
Please check eslint, it fails on every environment. |
|
If you have docker installed, running tests is pretty straightforward also locally. |
Yea i let oracle docker install overnight, but it seemed to fail, so I'm just running I'm currently trying to figure out the best way to get around the |
You could just start all other databases except oracle and run tests with something like:
Yea... that sounds like a quite non trivial to do and pretty crucial when making sure that pooling stuff is not leaked. I haven't really though about how to solve that in a robust manner. |
Ok so that one FYI everything passes locally except for the 2 tests that were failing on master for me as well... don't know if that seems to be an issue |
scripts/build.js
Outdated
return exec('npm install ' + installArgs, opts); | ||
} | ||
}) | ||
var needsDepInstallation = !_.isEmpty(installArgs); |
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.
do these need to be var? can they be const?
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.
Done! Was not sure what files are transpiled and which ones weren't, so I adhered to whatever the current file used (const
if it had const
or let
, otherwise var
)
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.
I believe nothing is transpiled anymore, both babel and support for node 6 were dropped.
Ok just to continue the thoughts from the start of the thread, I think it makes sense to keep this PR just targetting the I think what i'd like to propose in a separate PR is some way to implement the Thoughts? |
@chaffeqa Makes sense! Let's do this as incrementally as possible. |
Still waiting on oracle docker 🙄 but think this is ok...
Should resolve #3253