Skip to content
This repository has been archived by the owner on Feb 28, 2020. It is now read-only.

feat: leverage generator-ibm-service-enablement generator #300

Merged
merged 57 commits into from
Sep 19, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
57 commits
Select commit Hold shift + click to select a range
f613a50
wip
tunniclm Aug 29, 2017
b9aaf99
made progress (squash this later)
tunniclm Sep 13, 2017
621420a
update helper tests and fix bugs
tunniclm Sep 14, 2017
4a29812
convert more tests
tunniclm Sep 14, 2017
8197cff
convert last unit test
tunniclm Sep 14, 2017
41eac2e
add tests for creating crud files
tunniclm Sep 14, 2017
2f832b8
improve compatibility check, delay writing config, test
tunniclm Sep 14, 2017
492db7c
improve single shot tests
tunniclm Sep 14, 2017
ad94981
fix bug in server sdk gen changes
tunniclm Sep 14, 2017
1a948e1
convert prompted build integration tests
tunniclm Sep 14, 2017
f17009b
test naming, standard style, licenses, use strict
tunniclm Sep 15, 2017
2ae5fb6
remove bluemix option from prompting
tunniclm Sep 16, 2017
0f8ee04
add default values to prompts
tunniclm Sep 16, 2017
7ae5295
rename Bff to BFF (generator internal value)
tunniclm Sep 16, 2017
38991e5
make autoscaling a service, metrics a flag
tunniclm Sep 16, 2017
eda99bc
add mongodb service
tunniclm Sep 16, 2017
b593c36
add mongodb prompts, fixes, tests
tunniclm Sep 16, 2017
0cb24b9
refactor of app spec build tests
tunniclm Sep 16, 2017
074b3e5
added sdkgen service tests
tunniclm Sep 16, 2017
d34a353
add .swp files to gitignore
tunniclm Sep 16, 2017
5d429ff
fix web test that was not checking as it should
tunniclm Sep 16, 2017
b7880a1
fix test for autoscaling implying metrics
tunniclm Sep 16, 2017
416ea24
add config prompts for autoscaling (service name)
tunniclm Sep 17, 2017
4074d39
fix small bug propogating https protocol from prompt
tunniclm Sep 17, 2017
bdb2234
remove unused credential properties
tunniclm Sep 17, 2017
4b52f34
progress on tests
tunniclm Sep 17, 2017
fa4efa8
remove unused appid version from sanitize test
tunniclm Sep 17, 2017
8de260c
tactical fixes to model and property tests
tunniclm Sep 17, 2017
0d338a3
Merge commit '5f469b83f7792a2bad9d3d800f8b20f5b9ff9f10' into service_…
tunniclm Sep 17, 2017
573c59b
fix error in test
tunniclm Sep 17, 2017
ce4f822
fix coverage test command
tunniclm Sep 17, 2017
5ad3ea8
Merge remote-tracking branch 'origin/develop' into service_enablement
tunniclm Sep 17, 2017
e0829c2
update to latest cloud-enablement
tunniclm Sep 17, 2017
52aebe9
fix bug passing name into cloud-enablement
tunniclm Sep 17, 2017
7b32a7b
pass health check info to cloud-enablement
tunniclm Sep 17, 2017
2c185d7
fix test bugs
tunniclm Sep 17, 2017
4332bf5
disable compile all tests (hanging)
tunniclm Sep 17, 2017
41ac795
remove @full from crud base compile test
tunniclm Sep 17, 2017
fc3d138
update object storage property name
tunniclm Sep 17, 2017
76c7d52
improve test coverage
tunniclm Sep 17, 2017
766086e
add postgresql support
tunniclm Sep 17, 2017
5362c81
disable logging in service enablement
tunniclm Sep 17, 2017
30f8bca
update version of service-enablement
tunniclm Sep 18, 2017
3ea751f
add capability and service compile tests
tunniclm Sep 18, 2017
b50e07c
update enablement versions to latest
tunniclm Sep 18, 2017
87e850b
update to latest service-enablement
tunniclm Sep 18, 2017
aae3fb2
remove unused code and files
tunniclm Sep 18, 2017
62f2dc3
travis updates for sdkgen cron builds
tunniclm Sep 18, 2017
5044a1c
blank starter support
Sep 18, 2017
2446951
re-enable all cap/serv tests except for push
tunniclm Sep 18, 2017
75c4526
Merge branch 'service_enablement' of https://github.com/IBM-Swift/gen…
tunniclm Sep 18, 2017
dc49fef
blank starter support
Sep 18, 2017
17d0d4f
Merge branch 'service_enablement' of https://github.com/IBM-Swift/gen…
tunniclm Sep 18, 2017
4024eeb
fix test assertion for more node versions
tunniclm Sep 18, 2017
7936b53
re-enable the push tests
tunniclm Sep 18, 2017
854250f
update to latest service enablement
tunniclm Sep 18, 2017
c00acc5
fix test to resolve symlinks
tunniclm Sep 19, 2017
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ coverage/
.nyc_output/
coverage.lcov
.vscode/
*.swp
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ script:
- projectName="$(basename $projectFolder)"
- export SWIFT_SNAPSHOT=swift-3.1.1
- source ./Package-Builder/install-swift.sh
- npm run coverage
- npm run report-coverage
- if [[ $TRAVIS_EVENT_TYPE == "cron" ]]; then npm run testsdkgen; fi
- if [[ $TRAVIS_EVENT_TYPE != "cron" ]]; then npm run coverage && npm run report-coverage; fi
jobs:
include:
- stage: Review
Expand Down
Loading