mirror of https://github.com/zulip/zulip.git
tools: Rename tool to check-schemas.
This commit is contained in:
parent
36b1794c1d
commit
09ff0c400d
|
@ -369,7 +369,7 @@ in `frontend_tests/node_tests/lib/events.js`, a test of the
|
|||
`server_events_dispatch.js` code for that event in
|
||||
`frontend_tests/node_tests/dispatch.js`, and verify your example
|
||||
against the two versions of the schema that you declared above using
|
||||
`tools/check-node-fixtures`.
|
||||
`tools/check-schemas`.
|
||||
|
||||
#### Code coverage
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
// These events are not guaranteed to be perfectly
|
||||
// representative of what the server sends. We
|
||||
// have a tool called check-node-fixtures that tries
|
||||
// have a tool called check-schemas that tries
|
||||
// to validate this data against server side schemas,
|
||||
// but there are certain edge cases that the tool now
|
||||
// skips. And even when the data matches the schema,
|
||||
|
|
|
@ -10,8 +10,8 @@ set -x
|
|||
# Run the node tests first, since they're fast and deterministic
|
||||
./tools/test-js-with-node --coverage
|
||||
|
||||
# Check the node fixtures (also fast)
|
||||
./tools/check-node-fixtures
|
||||
# Check that various schemas are consistent. (is fast)
|
||||
./tools/check-schemas
|
||||
|
||||
# Check capitalization of strings
|
||||
./manage.py makemessages --locale en
|
||||
|
|
|
@ -71,7 +71,7 @@ run ./tools/test-api
|
|||
# ci/frontend
|
||||
run ./tools/lint --groups=frontend $FORCEARG
|
||||
run ./tools/test-js-with-node
|
||||
run ./tools/check-node-fixtures
|
||||
run ./tools/check-schemas
|
||||
run ./manage.py makemessages --locale en
|
||||
run env PYTHONWARNINGS=ignore ./tools/check-capitalization --no-generate
|
||||
run env PYTHONWARNINGS=ignore ./tools/check-frontend-i18n --no-generate
|
||||
|
|
Loading…
Reference in New Issue