Bulid ошибка на Travis CI до Django 3.0.3 на GitHub репо - PullRequest
0 голосов
/ 29 февраля 2020

После добавления файла .travis.yml в каталог проекта travis ci выдаёт мне ошибки, которые я не могу устранить. .travis.yml выглядит так:

language: python
python:
  - "3.7"
# command to install dependencies
install:
  - pip install -r requirements.txt
# command to run tests
script: pytest

Я получаю ошибку:

Worker information
0.14s0.01s0.00s0.01s
system_info
Build system information
0.01s0.00s0.35s0.21s0.05s0.00s0.04s0.00s0.01s0.01s0.01s0.01s0.01s0.00s0.00s0.02s0.00s0.01s0.30s0.00s0.00s0.00s0.01s0.00s0.12s0.01s0.81s0.00s0.00s6.03s0.00s2.73s0.00s2.28s
docker_mtu
resolvconf
git.checkout
1.05s$ git clone --depth=50 --branch=master https://github.com/ChrisAchinga/The-Diary.git ChrisAchinga/The-Diary
0.01s0.01s$ source ~/virtualenv/python3.7/bin/activate
$ python --version
Python 3.7.1
$ pip --version
pip 19.0.3 from /home/travis/virtualenv/python3.7.1/lib/python3.7/site-packages/pip (python 3.7)
install
10.77s$ pip install -r requirements.txt
0.40s$ pytest
============================= test session starts ==============================
platform linux -- Python 3.7.1, pytest-4.3.1, py-1.7.0, pluggy-0.8.0
rootdir: /home/travis/build/ChrisAchinga/The-Diary, inifile:
collected 0 items                                                              
========================= no tests ran in 0.05 seconds =========================
The command "pytest" exited with 5.
Done. Your build exited with 1.

Ошибка от travis

Ссылка на github: https://github.com/ChrisAchinga/The-Diary

...