forked from vidyar/sample_node_neo4j
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathshippable.yml
More file actions
40 lines (34 loc) · 1.89 KB
/
shippable.yml
File metadata and controls
40 lines (34 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Language setting
language: node_js
# Version number
node_js:
- 0.10
#neo4j runs on default port 7474
services:
- neo4j
# The path for Xunit to output test reports
env:
global:
- secure: duVj5fExMELjMHceDkZQKBGNJum/RF0OIwRxL29dtG0FUwdxBBrMtcxxQbqywr8JXnIdoagcFD8rx7bGjrWa/AsMtRfHeZKHeVHb93QwBXk1Fi98FvXvxNhCG286U+kxS02Y3i5p+op56YFMuo9PU3WpAFF/aHrL+q0xuFPySuXFvZQSJtEevAjMMMlzKEUXhSmEREaJBjTQ6gFR7m0O1T5jezF02Geqq7N0N59q8r2XGwKq8zYa6rtZSv4VlP187tUDD1BXufXKxALXkfeqzYq+WLD9hjNtqEYrosNKATKzpgP0GUpcqArob09Z3ONUSoCUmupLplwjbdqa4iRhiQ==
- secure: toHW6yKFo7OXbYDNZ1ZtdMTTX4H2sPBcbQyJvktMm3dSNy+jQFZybl28Cz/nIbDs9QbgczXEtebVyZ/KuW/ru64u8tXxtcRvlo6q+fT/VGT4rQP2XaG8l43M2ROqhsrDm0SUU0gY3s9SWVQjnjWP6LAwsqaHRJ49avWrHUJaEkZOG3qKVVW0fEbZjgPBXQaOO9YrBsx2wdDa6gpma/UPe2MfQtq/2VGDnMFu6gtTesvcREfxSp9PO/K+R6VzWxhHEB8+lHpuXjsh00kaIzMn/SkIJMO25jN1YaCWX8s5+JkaDd0M7cjQAQW98ENJAu7H5PwQVTwuQDSOFdEWCeATLg==
#- secure: BF6tscQCa9uZgh3YvCu9xfVcOshnHM8fztL5LGhAWOODdnPMubqECKdMbG3LLHZXOxu2bH27qoOxvbgFxw+qnEimZeQeZ97QAqes1/8s2DDFqWdmOmh3A4Uu1derGgzvRmCTE8feu+BnIWrds2cx/i7B2aVrZq6Wtd1gt344jNDf1wCTKtzX1ko5VPdXLB8OJ5tAhsFXxrD1/MtDyHpXhZHdFZF3ZexYyfPb3JZrb6ftB9Kz5ZLqM+4U9+escvYug6T8MrPkwYxOFQWx/8xMSaPSwoemZWZpee7BU1n16Ydw7aqyc/avkWw4tvqvyjNttTY1mleerjs1W7TWEg+ilw==
- XUNIT_FILE=shippable/testresults/result.xml
# Create directories for test and coverage reports
before_script:
- mkdir -p shippable/testresults
- mkdir -p shippable/codecoverage
# Running the tests with grunt
script:
- npm test
- echo $foo
- echo $var
- echo $name
- echo $a
# Tell istanbul to generate a coverage report
after_script:
- ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --ui=bdd --reporter=xunit-file
- ./node_modules/.bin/istanbul report cobertura --dir shippable/codecoverage/
after_archive:
- echo $SHIPPABLE_ARCHIVE_DOWNLOAD_URL
- echo $SHIPPABLE_ARTIFACTS_URL
- echo $ARTIFACTS_UPLOAD_SUCCESSFUL