|
@@ -121,6 +121,14 @@ test-python:
|
|
|
py.test tests/integration tests/sentry || exit 1
|
|
|
@echo ""
|
|
|
|
|
|
+test-network:
|
|
|
+ @echo "--> Building platform assets"
|
|
|
+ sentry init
|
|
|
+ @echo "from sentry.utils.integrationdocs import sync_docs; sync_docs()" | sentry exec
|
|
|
+ @echo "--> Running network tests"
|
|
|
+ py.test tests/network
|
|
|
+ @echo ""
|
|
|
+
|
|
|
test-acceptance:
|
|
|
@echo "--> Building static assets"
|
|
|
@${NPM_ROOT}/.bin/webpack
|
|
@@ -188,6 +196,7 @@ travis-install-mysql: travis-install-python
|
|
|
pip install mysqlclient
|
|
|
echo 'create database sentry;' | mysql -uroot
|
|
|
travis-install-acceptance: install-yarn travis-install-postgres
|
|
|
+travis-install-network: travis-install-postgres
|
|
|
travis-install-js:
|
|
|
$(MAKE) travis-upgrade-pip
|
|
|
$(MAKE) install-python install-yarn
|
|
@@ -206,6 +215,7 @@ travis-lint-sqlite: lint-python
|
|
|
travis-lint-postgres: lint-python
|
|
|
travis-lint-mysql: lint-python
|
|
|
travis-lint-acceptance: travis-noop
|
|
|
+travis-lint-network: lint-python
|
|
|
travis-lint-js: lint-js
|
|
|
travis-lint-cli: travis-noop
|
|
|
travis-lint-dist: travis-noop
|
|
@@ -220,6 +230,7 @@ travis-test-sqlite: test-python-coverage
|
|
|
travis-test-postgres: test-python-coverage
|
|
|
travis-test-mysql: test-python-coverage
|
|
|
travis-test-acceptance: test-acceptance
|
|
|
+travis-test-network: test-network
|
|
|
travis-test-js: test-js
|
|
|
travis-test-cli: test-cli
|
|
|
travis-test-dist:
|