-
Notifications
You must be signed in to change notification settings - Fork 170
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
Make example tests run off of the CLI, tidy testing/ #1730
Conversation
import { version } from "df/core/version"; | ||
import { dataform } from "df/protos/ts"; | ||
import { suite, test } from "df/testing"; | ||
import { suite, test, getProcessResult, nodePath, npmPath, corePackageTarPath } from "df/testing"; |
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.
import should be alphabetized. same in other locations.
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.
Let's not bother if the linter won't do it, and it doesn't look there's a drop-in setting
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.
The linter was throwing, I somehow merged it before the tests finished lol - will update in subsequent PR
* Make example tests run off of the CLI, tidy testing/ * Tidy * Make example projects have separate datasets * Force trigger re-run * Force trigger re-run
This removes dependence on the API part of the CLI, which should be private
Also tidy up project datasets, and
tests/utils
which was weirdly located.