mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 04:53:36 +00:00
The node packages 'jQuery' and 'jquery' are different--'jQuery' is the legacy support package that is needed for Zulip so the require statements in the tests were updated. Travis uses node 4.0 by default and we are using 0.10, so the command to install the correct version had to be added to the .travis.yml file.
23 lines
362 B
YAML
23 lines
362 B
YAML
before_install:
|
|
- nvm install 0.10
|
|
install:
|
|
- tools/travis/setup-$TEST_SUITE
|
|
cache:
|
|
- apt: false
|
|
env:
|
|
- TEST_SUITE=frontend
|
|
- TEST_SUITE=backend
|
|
- TEST_SUITE=production
|
|
- TEST_SUITE=py3k
|
|
language: python
|
|
python:
|
|
- "2.7"
|
|
# command to run tests
|
|
script:
|
|
- ./tools/travis/$TEST_SUITE
|
|
sudo: required
|
|
services:
|
|
- docker
|
|
addons:
|
|
postgresql: "9.3"
|