Skip to content

Commit

Permalink
rename requirement file name to a generic one
Browse files Browse the repository at this point in the history
  • Loading branch information
yzhao062 authored and yuezhao@cs.toronto.edu committed Nov 30, 2018
1 parent 27f3570 commit 0f4cd92
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "requirements_travis.txt" }}
- v1-dependencies-{{ checksum "requirements_ci.txt" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-

Expand All @@ -41,7 +41,7 @@ jobs:
- save_cache:
paths:
- ./venv
key: v1-dependencies-{{ checksum "requirements_travis.txt" }}
key: v1-dependencies-{{ checksum "requirements_ci.txt" }}

# run tests!
# this example uses Django's built-in test-runner
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ python:
- "3.6"
- "3.6-dev" # 3.6 development branch
install:
- pip install -r requirements_travis.txt
- pip install -r requirements_ci.txt
- pip install pytest
- pip install pytest-cov
- pip install coveralls
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ install:
- "%PYTHON%\\python.exe -m pip install --upgrade pip setuptools"
- "%PYTHON%\\python.exe -m pip install wheel"
- "%PYTHON%\\python.exe -m pip install pytest"
- "%PYTHON%\\python.exe -m pip install -r requirements_travis.txt"
- "%PYTHON%\\python.exe -m pip install -r requirements_ci.txt"


test_script:
Expand Down
File renamed without changes.

0 comments on commit 0f4cd92

Please sign in to comment.