diff options
| -rw-r--r-- | .travis.yml | 12 | ||||
| -rw-r--r-- | docs/pathod/language.rst | 4 | 
2 files changed, 14 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 4c85c46d..3542a592 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,6 +10,9 @@ git:  matrix:    fast_finish: true +  allow_failures: +    - language: node_js +      node_js: "node"    include:      - python: 3.5        env: TOXENV=lint @@ -47,6 +50,15 @@ matrix:        env: TOXENV=individual_coverage      - python: 3.5        env: TOXENV=docs +    - language: node_js +      node_js: "node" +      before_install: npm install -g yarn +      install: cd web && yarn +      script: npm test +      cache: +          yarn: true +          directories: +              - web/node_modules  install:    - | diff --git a/docs/pathod/language.rst b/docs/pathod/language.rst index 672e21b6..fe4ef6ca 100644 --- a/docs/pathod/language.rst +++ b/docs/pathod/language.rst @@ -23,7 +23,7 @@ HTTP Request          mode if the server responds correctly. Apart from that, websocket          requests are just like any other, and all aspects of the request          can be over-ridden. -    * - h\:\ :ref:`VALUE`\ =\ :ref:`VALUE`\ +    * - h\ :ref:`VALUE`\ =\ :ref:`VALUE`\        - Set a header.      * - r        - Set the **raw** flag on this response. Pathod will not calculate a @@ -73,7 +73,7 @@ HTTP Response      * - m\ :ref:`VALUE`        - HTTP Reason message. Automatically chosen according to the response          code if not specified. (HTTP/1 only) -    * - h\:\ :ref:`VALUE`\ =\ :ref:`VALUE`\ +    * - h\ :ref:`VALUE`\ =\ :ref:`VALUE`\        - Set a header.      * - r        - Set the **raw** flag on this response. Pathod will not calculate a  | 
