Conversation
| - '3.7-dev' | ||
|
|
||
| git: | ||
| depth: 200 |
There was a problem hiding this comment.
we don't go back to any old version of git so no need for this line
| language: python | ||
| python: | ||
| - '3.6' | ||
| - '3.7-dev' |
There was a problem hiding this comment.
3.7 version now is available
| - conda install tofu --use-local | ||
| - if [[ "$TRAVIS_PYTHON_VERSION" == "3.7" ]]; then export VADD="py37"; | ||
| else export VADD="py36"; fi | ||
| - wget "$REPO" -O miniconda.sh |
There was a problem hiding this comment.
Change here since we created an environmental variable for the source of the conda repo
| on: | ||
| tags: true | ||
| all_branches: true | ||
| branch: master |
There was a problem hiding this comment.
no need to deploy for all branches only master
| # Only need to change these two variables | ||
| PKG_NAME=tofu | ||
| USER=ToFuProject | ||
| OS=linux-64 |
There was a problem hiding this comment.
now this is was created in .travis.yml
| build: | ||
| script_env: | ||
| # - REV | ||
| - OS |
There was a problem hiding this comment.
we will use the variable from .travis.yml
| build: | ||
| - python | ||
| - setuptools | ||
| - setuptools >=40.8.0 |
There was a problem hiding this comment.
updated dependency
| branch: master | ||
| password: | ||
| secure: JNEDTDJVx/2fXNfHntNQ99iDRNuQ4uB3y+DBWVIBycCT95+UCb36YPtKzmruEk/UUS29Xgq4IYCGdfCSWE9smKqG8tV1PcHiw705m+AzcpKy77YtzbVECFBxqY4W36O2pHrkwEUzP/7acjFwNsnUFzArqEzsBJ+KdLaa4OPHJXCh30GA0GyqlrXYbBKG+DA9hX5vtsGo4C6w9noALYF3fS7pKPiI6ipKFnAlzGgHQ7Ke0uQME8N3IAFhmh+Z5xMtIIDWxlnqv+KszdG4DIaGV/W6NIJNAbRhzkqUd+Chu6LoPAd/XkHDTeirR/MBkNUc5UcRJxRnP9rUTRo1gCO/buTYuNRgFkMvqhV5a033+x9edWgtUiKNJIMPLXOxe0RJvc5GWji+Co77HtHxRmGRM2rnYqWMtZeYZlFbUdvHu/8jf0d6I8jyUgAoJYdlMA2u/ipENP3S6by4epE9qycUPXiIVh6r3DZbf3vPTMFvTZYAjBrA0NOzihv1xgcXwemmNUFOQSpe0io4UcFxtS9lLMo+30UMQjCHSnbEVM3zSlZmbMOKpkVOlKlt8Lz5NxwVgWtu9FuW2pGukLtE8AWbqvY9urXAPZCQqZlOIklIjJQIqOITnuw9LEV09cgvPHXfdvNni3ldbMlIQ89zryM6dYvhYryTiEZGK4JDR3wAKJA= | ||
| - provider: pypi |
There was a problem hiding this comment.
Ok, I have created an account on test.pipy.org
There was a problem hiding this comment.
Very good initiative !
- One question on REV (see below)
- Tests on Travis are passing for 3 builds and failing for 3 others:
- Linux 3.7 : any idea why ?
- Mac 3.6 and 3.7 : apt-get is not valid for Mac environment (maybe create envionment-specific scripts and call them ?)
The rest seems fine,
Good job !
Codecov Report
@@ Coverage Diff @@
## devel #306 +/- ##
=======================================
Coverage 41.04% 41.04%
=======================================
Files 79 79
Lines 23464 23464
=======================================
Hits 9630 9630
Misses 13834 13834
Continue to review full report at Codecov.
|
Didou09
left a comment
There was a problem hiding this comment.
OK for me, but te travis builds are not passing yet (failing at deployement apparently)
| language: generic | ||
| env: | ||
| - REPO=https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh | ||
| - TRAVIS_PYTHON_VERSION=3.7 |
There was a problem hiding this comment.
Variable TRAVIS_PYTHON_VERSION is not defined in all cases, is it normal ?
There was a problem hiding this comment.
yes, it is defined when it's the default platform language. However on Mac it is not possible to define a job with default language "python" (thus the language: generic).
See for example:
https://docs.travis-ci.com/user/multi-os/#python-example-unsupported-languages
Didou09
left a comment
There was a problem hiding this comment.
Good for me when unit tests are passing
|
all tests are passing with this branch ;) |
|
Replaced by #328 |
test-deploybranch.Warning: an account in test.pypi has to be created