Rafał Pitoń 9 лет назад
Родитель
Сommit
876223cfa2
2 измененных файлов с 2 добавлено и 4 удалено
  1. 2 1
      .travis.yml
  2. 0 3
      runtests.py

+ 2 - 1
.travis.yml

@@ -5,9 +5,10 @@ python:
   - "2.7"
 install:
   - pip install coveralls
+  - pip install -r misago/project_template/requirements.txt
 before_script:
   - psql -c "create database travis_ci_test;" -U postgres
 script:
-  - coverage run --source=misago setup.py test
+  - coverage run --source=misago runtests.py
 after_success:
   - coveralls

+ 0 - 3
runtests.py

@@ -27,9 +27,6 @@ def parse_args():
         else:
             args.append(arg)
 
-    if not args:
-        args = ['misago']
-
     return args, kwargs