Skip to content
This repository was archived by the owner on Feb 12, 2024. It is now read-only.

Commit ac95601

Browse files
authoredNov 23, 2017
feat: complete PubSub implementation
* feat: PubSub Interop Tests and CLI+HTTP-API Implementation (#1081) * test: enable pubsub tests * fix: generate meaniful error when pubsub is called and not enabled * test: enable pubsub for factory daemon * test: enable pubsub tests * fix: generate meaniful error when pubsub is called and not enabled * test: enable pubsub for factory daemon * fiix(pubsub-subscribe): stop HAPI gzip from buffering our streamed response * test: fix spec/pubsub * fix: lint errors * test: tests js/go pubsub interop * test: pubsub interop tests * test: enable pubsub tests * fix: generate meaniful error when pubsub is called and not enabled * test: enable pubsub for factory daemon * fiix(pubsub-subscribe): stop HAPI gzip from buffering our streamed response * test: fix spec/pubsub * fix: lint errors * test: tests js/go pubsub interop * test: pubsub interop tests * test: more tests with different data types Note that binary data from JS to GO fails * HTTP API server: parsing query string as binary in pubsub publish * HTTP API: pubsub: publish should fail gracefully when no argument is given * chore: update deps * chore: update deps * last pass * chore: update deps * test: update interop tests * trying to fix cli pubsub tests * HTTP API server: pubsub pub buffer should have content * making linter happier * pubsub cli tests: higher timeout * making the linter even happier * tests: increasing some of the timeouts * fix: test was wrong * moar * mais um pouco * fix * meh * key size * moar timeouts * taaaaaaaaaaake ooooooonnn meeeeeeee * unomas * take it all * fix * moar * almost there * almost there part II * almost there part III * take out coverage from travis and pass it to circle * small adj in the travis config
1 parent 1c8ad75 commit ac95601

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+712
-377
lines changed
 

‎.travis.yml

-6
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,16 @@ matrix:
77
env: CXX=g++-4.8
88
- node_js: 8
99
env: CXX=g++-4.8
10-
# - node_js: stable
11-
# env: CXX=g++-4.8
1210

1311
script:
1412
- npm run lint
1513
- npm run test
16-
- npm run coverage
1714
- make test
1815

1916
before_script:
2017
- export DISPLAY=:99.0
2118
- sh -e /etc/init.d/xvfb start
2219

23-
after_success:
24-
- npm run coverage-publish
25-
2620
addons:
2721
firefox: 'latest'
2822
apt:

‎circle.yml

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ machine:
22
node:
33
version: stable
44

5+
test:
6+
post:
7+
- npm run coverage -- --upload
8+
59
dependencies:
610
pre:
711
- google-chrome --version

0 commit comments

Comments
 (0)
This repository has been archived.