소스 검색

merge "pip install" commands

Andy Esnard 5 년 전
부모
커밋
b647b74c53
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 2
      .travis.yml

+ 1 - 2
.travis.yml

@@ -16,8 +16,7 @@ before_install:
   - sudo systemctl restart mariadb
   - python --version
 install:
-  - pip install -r requirements.txt
-  - pip install -r tests/requirements.txt
+  - pip install -r requirements.txt -r tests/requirements.txt
 script:
   # Creating the applicative database
   - sudo mariadb -e "CREATE DATABASE $DB_NAME; CREATE USER IF NOT EXISTS '$DB_USER'@'localhost' IDENTIFIED BY '$DB_PASSWORD'; GRANT ALL PRIVILEGES ON $DB_NAME.* TO '$DB_USER'@'localhost'; FLUSH PRIVILEGES;"