From 3e8a0e6f807bdc888b2c207c8531d0843c687557 Mon Sep 17 00:00:00 2001 From: Christian Darsow-Fromm <christian.darsow@physik.uni-hamburg.de> Date: Thu, 21 Feb 2019 18:41:40 +0100 Subject: [PATCH] fixes --- .gitlab-ci.yml | 4 ++-- README.md | 10 +++++----- build_docker.sh | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8b0cf07..ab9438d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,7 +5,7 @@ variables: PIP_CACHE_DIR: "$CI_PROJECT_DIR/.pip" package: - image: lasnq/OpenQlab + image: lasnq/openqlab stage: build before_script: script: @@ -53,7 +53,7 @@ test wheel installation: - .pip/ test: - image: lasnq/OpenQlab + image: lasnq/openqlab stage: test before_script: script: diff --git a/README.md b/README.md index a74e865..9f885be 100644 --- a/README.md +++ b/README.md @@ -15,8 +15,8 @@ volunteers who would like to contribute. ## Documentation -* Current documentation of the [latest release](https://las-nq-serv.physnet.uni-hamburg.de/python/OpenQlab) -* Current documentation of the [latest development version](https://las-nq-serv.physnet.uni-hamburg.de/python/OpenQlab-stage) +* Current documentation of the [latest release](https://las-nq-serv.physnet.uni-hamburg.de/python/openqlab) +* Current documentation of the [latest development version](https://las-nq-serv.physnet.uni-hamburg.de/python/openqlab-stage) ## Features @@ -36,7 +36,7 @@ volunteers who would like to contribute. ## Installation -For a detailed installation instruction see the main [documentation](https://las-nq-serv.physnet.uni-hamburg.de/python/OpenQlab/). +For a detailed installation instruction see the main [documentation](https://las-nq-serv.physnet.uni-hamburg.de/python/openqlab/). ## Usage @@ -52,7 +52,7 @@ documentation. ### Tests Please write unittests if you add new features. -All tests located in `OpenQlab/test` are automatically tested when pushing to Gitlab. +All tests located in `src/test` are automatically tested when pushing to Gitlab. To run them manually use: ```python @@ -64,4 +64,4 @@ make test ``` ---- -(c) 2018, LasNQ @ Uni Hamburg +(c) 2019, LasNQ @ Uni Hamburg diff --git a/build_docker.sh b/build_docker.sh index 0601ca9..0ec72a6 100755 --- a/build_docker.sh +++ b/build_docker.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash set -e -project=OpenQlab +project=openqlab docker build -t $project . docker tag $project lasnq/$project -- GitLab