From 0ce5e15c8bcd77fda55dae1138cda72c1cc3d0eb Mon Sep 17 00:00:00 2001 From: nanoric Date: Tue, 19 Mar 2019 04:34:49 -0400 Subject: [PATCH] [Add] .travis.yml: added names for build matrix --- .travis.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index eaa0f3e7..b87ea123 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,9 +7,8 @@ python: matrix: include: - - # pip install under linux - - before_install: + - name: "pip install under linux" + before_install: # C++17 - sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test - sudo apt-get update -qq @@ -22,11 +21,12 @@ matrix: # Linux install script - bash ./install.sh script: + # todo: use python unittest - python -c "import vnpy.api.ctp.vnctp; import vnpy.api.oes.vnoes; exit(0);" - # code quality analysis - - before_install: + - name: "code quality analysis: flake8" + before_install: - pip install flake8 install: - "" # prevent running "pip install -r requirements.txt"