-
Notifications
You must be signed in to change notification settings - Fork 2
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
Basic integration tests #11
Conversation
9dd0b29
to
1a41db9
Compare
…e integration tests: - use .npmrc to redirect between public registry and verdaccio - only put scoped packages in verdaccio - move integration tests into @neon-integration-tests scope
…ped name of the crate
… since they're already in the shell scripts
done | ||
exit 1 | ||
fi | ||
run: ./test/lint/check-bundles.sh |
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.
Moved the listing logic into a separate shell script file.
@@ -2,3 +2,6 @@ | |||
members = [ | |||
"pkgs/cargo-messages" | |||
] | |||
exclude = [ | |||
"test/integration/sniff-bytes" |
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.
This is needed so the root cargo workspace doesn't get confused by the Rust code inside the integration tests.
This PR implements basic integration test infrastructure using verdaccio to create a private proxy during CI, so that the packages being tested can be transparently published and then discarded.