tests: in Travis, also run the backend tests

This change introduces automatic execution of the backend tests in Travis.

Implements #2351.
This commit is contained in:
John McLear 2020-04-03 02:27:05 +01:00 committed by GitHub
parent c2ea2b3a6d
commit 93180c287b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 56 additions and 0 deletions

View file

@ -24,6 +24,11 @@ env:
jobs:
include:
- name: "Run the Backend tests"
install:
- "cd src && npm install && cd -"
script:
- "tests/frontend/travis/runnerBackend.sh"
- name: "Test the Frontend"
install:
- "bin/installDeps.sh"