Просмотр исходного кода

venv ignore, added py 3.5 to travis tests matrix, removed appveyor

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

+ 1 - 0
.gitignore

@@ -65,6 +65,7 @@ docs/_build/
 dev/
 dev-manage.py
 futuredep/
+venv/
 future-manage.py
 misago-admin.py
 db.sqlite3

+ 1 - 0
.travis.yml

@@ -3,6 +3,7 @@ addons:
 language: python
 python:
   - "2.7"
+  - "3.5"
 install:
   - pip install coveralls
 before_script:

+ 0 - 48
appveyor.yml

@@ -1,48 +0,0 @@
-# http://www.appveyor.com/docs/appveyor-yml
-
-# Custom build version
-version: 0.{build}-{branch}
-
-# Fix line endings in Windows. (runs before repo cloning)
-init:
-  - git config --global core.autocrlf true
-
-# Test against these versions of Node.js.
-environment:
-  matrix:
-    - nodejs_version: "0.12"
-
-# Don't finish after first fail
-matrix:
-  fast_finish: false
-
-# Install scripts. (runs after repo cloning)
-install:
-  # Get the latest stable version of Node 0.STABLE.latest
-  - ps: Install-Product node $env:nodejs_version
-  # Install PhantomJS
-  - cinst PhantomJS -y -Version 1.9.8
-  - set path=%path%;C:\tools\PhantomJS\
-  - dir C:\tools\PhantomJS
-  # Typical npm stuff.
-  - md C:\nc
-  - npm install -g npm@^2
-  # Workaround https://github.com/npm/npm/wiki/Troubleshooting#upgrading-on-windows
-  - set PATH=%APPDATA%\npm;%PATH%
-  - npm config set cache C:\nc
-  - npm version
-  - ps: cd C:\projects\misago\misago\emberapp
-  - npm install -g bower
-  - npm install
-  - bower install
-
-# Post-install test scripts.
-test_script:
-  # Output useful info for debugging.
-  - node --version
-  - npm --version
-  # run tests
-  - npm test
-
-# Don't actually build.
-build: off