Skip to content
This repository has been archived by the owner on Nov 30, 2022. It is now read-only.

Commit

Permalink
Merge branch 'master' into tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
Helene Rigner committed Jan 21, 2019
2 parents b68c0fe + 4fe15e6 commit c269dde
Show file tree
Hide file tree
Showing 32 changed files with 1,778 additions and 312 deletions.
10 changes: 7 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ jobs:
build:
docker:
- image: circleci/node:10
- image: qlikcore/engine:12.292.0
- image: qlikcore/engine:12.300.0
command: -S AcceptEULA=yes
- image: browserless/chrome

Expand Down Expand Up @@ -32,8 +32,12 @@ jobs:

- run:
name: Component tests
command:
command: |
npm run test:comp
if [ ! -z "$COVERALLS_REPO_TOKEN" ]; then
echo "Uploading coverage results to coveralls.io..."
cat coverage/lcov.info | npx coveralls
fi
- run:
name: E2E tests
Expand All @@ -51,7 +55,7 @@ jobs:
path: test/e2e/__artifacts__

- run:
name: Sync documentation to S3 bucket
name: Sync dist to S3 bucket
command: |
if [ "${CIRCLE_BRANCH}" == "master" ] && [ "${TARGET_USER}" != "" ]; then
sudo apt-get -y -qq install awscli
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
![catwalk](./src/assets/catwalk.svg)

[![Coverage Status](https://coveralls.io/repos/github/qlik-oss/catwalk/badge.svg)](https://coveralls.io/github/qlik-oss/catwalk)

Gain data model insights quickly during its development and validation phases. This tool is useful when you want to explore your data model for whatever reason; maybe you are creating a complex load script, maybe you want to investigate associations.

![screenshot](./screenshot.png)
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3.3"

services:
qix-engine:
image: qlikcore/engine:12.292.0
image: qlikcore/engine:12.300.0
restart: always
command: |
-S AcceptEULA=${ACCEPT_EULA}
Expand Down

0 comments on commit c269dde

Please sign in to comment.