Skip to content

Commit

Permalink
Merge pull request #3 from julienmalard/poetry
Browse files Browse the repository at this point in the history
poetry
  • Loading branch information
julienmalard committed Oct 28, 2020
2 parents b89d30b + 504f556 commit b2fb708
Show file tree
Hide file tree
Showing 21 changed files with 2,102 additions and 61 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Expand Up @@ -21,4 +21,6 @@ build/

# Documentación #
#################
docs/.tx/*
docs/.tx/*

.coverage
26 changes: 14 additions & 12 deletions .travis.yml
@@ -1,18 +1,20 @@
language: python
matrix:
include:
- os: linux
sudo: required
python: 3.6
python:
- '3.8'

os:
- linux
env:
global:
- TX_BRANCH="master"
install:
- pip install --upgrade pip setuptools wheel
- pip install -r தேவைகள்.txt
- pip install coveralls codecov
- python setup.py sdist bdist_wheel
- pip install ennikkai --no-index --find-links=./dist
- pip install poetry
- pip install coveralls codecov
- poetry install -v

script:
- cd சோதனைகள்
- coverage run -m unittest மூலம்
- poetry run pytest

after_success:
- coveralls --rcfile=.coveragerc
- codecov
Expand Down
9 changes: 4 additions & 5 deletions appveyor.yml
Expand Up @@ -2,16 +2,15 @@ environment:

matrix:

- PYTHON: "C:\\Python36-x64"
- PYTHON: "C:\\Python38-x64"

install:
- "set PATH=%PATH%;%PYTHON%\\Scripts"
- "%PYTHON%\\python.exe -m pip install --upgrade pip"
- "%PYTHON%\\python.exe -m pip install --upgrade pip coveralls codecov poetry"
- "%PYTHON%\\python.exe -m pip install --upgrade setuptools"
- "%PYTHON%\\python.exe -m pip install --upgrade wheel"
- "%PYTHON%\\python.exe setup.py -q install"
- "poetry install -v -q"

build: false

test_script:
- "%PYTHON%\\python.exe -m unittest"
- 'poetry run pytest -s சோதனைகள்/மூலம்.py -qq'

0 comments on commit b2fb708

Please sign in to comment.