Makefile 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. .PHONY: all
  2. all: develop
  3. PIP := python -m pip --disable-pip-version-check
  4. WEBPACK := yarn build-acceptance
  5. POSTGRES_CONTAINER := sentry_postgres
  6. freeze-requirements:
  7. @python3 -S -m tools.freeze_requirements
  8. bootstrap \
  9. develop \
  10. clean \
  11. init-config \
  12. run-dependent-services \
  13. drop-db \
  14. create-db \
  15. apply-migrations \
  16. reset-db \
  17. setup-git \
  18. node-version-check \
  19. install-js-dev \
  20. install-py-dev :
  21. @./scripts/do.sh $@
  22. build-platform-assets \
  23. direnv-help \
  24. upgrade-pip \
  25. prerequisites \
  26. setup-git-config :
  27. @SENTRY_NO_VENV_CHECK=1 ./scripts/do.sh $@
  28. setup-pyenv:
  29. @./scripts/pyenv_setup.sh
  30. build-js-po: node-version-check
  31. mkdir -p build
  32. rm -rf node_modules/.cache/babel-loader
  33. SENTRY_EXTRACT_TRANSLATIONS=1 $(WEBPACK)
  34. build-spectacular-docs:
  35. @echo "--> Building drf-spectacular openapi spec (combines with deprecated docs)"
  36. @OPENAPIGENERATE=1 sentry django spectacular --file tests/apidocs/openapi-spectacular.json --format openapi-json --validate --fail-on-warn
  37. build-deprecated-docs:
  38. @echo "--> Building deprecated openapi spec from json files"
  39. yarn build-deprecated-docs
  40. build-api-docs: build-deprecated-docs build-spectacular-docs
  41. @echo "--> Dereference the json schema for ease of use"
  42. yarn deref-api-docs
  43. watch-api-docs:
  44. @cd api-docs/ && yarn install
  45. @cd api-docs/ && ts-node ./watch.ts
  46. diff-api-docs:
  47. @echo "--> diffing local api docs against sentry-api-schema/openapi-derefed.json"
  48. yarn diff-docs
  49. build: locale
  50. merge-locale-catalogs: build-js-po
  51. $(PIP) install Babel
  52. cd src/sentry && sentry django makemessages -i static -l en
  53. ./bin/merge-catalogs en
  54. compile-locale:
  55. $(PIP) install Babel
  56. ./bin/find-good-catalogs src/sentry/locale/catalogs.json
  57. cd src/sentry && sentry django compilemessages
  58. install-transifex:
  59. $(PIP) install transifex-client
  60. push-transifex: merge-locale-catalogs install-transifex
  61. tx push -s
  62. pull-transifex: install-transifex
  63. tx pull -a
  64. # Update transifex with new strings that need to be translated
  65. update-transifex: push-transifex
  66. # Pulls new translations from transifex and compiles for usage
  67. update-local-locales: pull-transifex compile-locale
  68. build-chartcuterie-config:
  69. @echo "--> Building chartcuterie config module"
  70. yarn build-chartcuterie-config
  71. fetch-release-registry:
  72. @echo "--> Fetching release registry"
  73. @echo "from sentry.utils.distutils import sync_registry; sync_registry()" | sentry exec
  74. run-acceptance:
  75. @echo "--> Running acceptance tests"
  76. pytest tests/acceptance --cov . --cov-report="xml:.artifacts/acceptance.coverage.xml"
  77. @echo ""
  78. test-cli:
  79. @echo "--> Testing CLI"
  80. rm -rf test_cli
  81. mkdir test_cli
  82. cd test_cli && sentry init test_conf
  83. cd test_cli && sentry --config=test_conf help
  84. cd test_cli && sentry --config=test_conf upgrade --traceback --noinput
  85. cd test_cli && sentry --config=test_conf export
  86. rm -r test_cli
  87. @echo ""
  88. test-js-build: node-version-check
  89. @echo "--> Running type check"
  90. @yarn run tsc -p config/tsconfig.build.json
  91. @echo "--> Building static assets"
  92. @NODE_ENV=production yarn webpack-profile > .artifacts/webpack-stats.json
  93. test-js: node-version-check
  94. @echo "--> Running JavaScript tests"
  95. @yarn run test
  96. @echo ""
  97. test-js-ci: node-version-check
  98. @echo "--> Running CI JavaScript tests"
  99. @yarn run test-ci
  100. @echo ""
  101. test-python-ci:
  102. @echo "--> Running CI Python tests"
  103. pytest tests/integration tests/sentry \
  104. --ignore tests/sentry/eventstream/kafka \
  105. --ignore tests/sentry/post_process_forwarder \
  106. --ignore tests/sentry/snuba \
  107. --ignore tests/sentry/search/events \
  108. --ignore tests/sentry/ingest/ingest_consumer/test_ingest_consumer_kafka.py \
  109. --ignore tests/sentry/region_to_control/test_region_to_control_kafka.py \
  110. --cov . --cov-report="xml:.artifacts/python.coverage.xml"
  111. @echo ""
  112. test-snuba:
  113. @echo "--> Running snuba tests"
  114. pytest tests/snuba \
  115. tests/sentry/eventstream/kafka \
  116. tests/sentry/post_process_forwarder \
  117. tests/sentry/snuba \
  118. tests/sentry/search/events \
  119. -vv --cov . --cov-report="xml:.artifacts/snuba.coverage.xml"
  120. @echo ""
  121. test-tools:
  122. @echo "--> Running tools tests"
  123. pytest -c /dev/null --confcutdir tests/tools tests/tools -vv --cov=tools --cov=tests/tools --cov-report="xml:.artifacts/tools.coverage.xml"
  124. @echo ""
  125. backend-typing:
  126. @echo "--> Running Python typing checks"
  127. mypy
  128. @echo ""
  129. # JavaScript relay tests are meant to be run within Symbolicator test suite, as they are parametrized to verify both processing pipelines during migration process.
  130. # Running Locally: Run `sentry devservices up kafka zookeeper` before starting these tests
  131. test-symbolicator:
  132. @echo "--> Running symbolicator tests"
  133. pytest tests/symbolicator -vv --cov . --cov-report="xml:.artifacts/symbolicator.coverage.xml"
  134. pytest tests/relay_integration/lang/javascript/ -vv -m symbolicator
  135. @echo ""
  136. test-chartcuterie:
  137. @echo "--> Running chartcuterie tests"
  138. pytest tests/chartcuterie -vv --cov . --cov-report="xml:.artifacts/chartcuterie.coverage.xml"
  139. @echo ""
  140. test-acceptance: node-version-check
  141. @echo "--> Building static assets"
  142. @$(WEBPACK)
  143. make run-acceptance
  144. test-plugins:
  145. @echo "--> Running plugin tests"
  146. pytest tests/sentry_plugins -vv --cov . --cov-report="xml:.artifacts/plugins.coverage.xml"
  147. @echo ""
  148. test-relay-integration:
  149. @echo "--> Running Relay integration tests"
  150. pytest \
  151. tests/relay_integration \
  152. tests/sentry/ingest/ingest_consumer/test_ingest_consumer_kafka.py \
  153. -vv --cov . --cov-report="xml:.artifacts/relay.coverage.xml"
  154. @echo ""
  155. test-api-docs: build-api-docs
  156. yarn run validate-api-examples
  157. pytest tests/apidocs
  158. @echo ""
  159. review-python-snapshots:
  160. @cargo insta --version &> /dev/null || cargo install cargo-insta
  161. @cargo insta review --workspace-root `pwd` -e pysnap
  162. accept-python-snapshots:
  163. @cargo insta --version &> /dev/null || cargo install cargo-insta
  164. @cargo insta accept --workspace-root `pwd` -e pysnap
  165. reject-python-snapshots:
  166. @cargo insta --version &> /dev/null || cargo install cargo-insta
  167. @cargo insta reject --workspace-root `pwd` -e pysnap
  168. lint-js:
  169. @echo "--> Linting javascript"
  170. bin/lint --js --parseable
  171. @echo ""
  172. .PHONY: build