Revision 1d91a6e1350831bf6f9f0e7ff23be4cec2ce8fd2 authored by Dave Eargle on 18 March 2021, 22:15:53 UTC, committed by GitHub on 18 March 2021, 22:15:53 UTC
Fix backwards compatibility for translating ON_HEROKU=1 to ON_CLOUD=1
2 parent s da12a87 + 88c43c3
Raw File
.travis.yml
language: python
matrix:
    include:
        - name: "Python 3.6 on Linux"
          python: 3.6
        - name: "Python 3.7 on Linux"
          python: 3.7
        - name: "Python 3.8 on Linux"
          python: 3.8
git:
    quiet: true
before_install:
- sudo rm -f /etc/boto.cfg
install:
- pip3 install -r requirements.txt
- pip3 install coverage
- pip3 install coveralls
script:
- python3 setup.py test || python setup.py test
- coverage run --source=psiturk setup.py test
after_success: coveralls
deploy:
    # test pypi pip deployment
#  - provider: pypi
#    server: https://test.pypi.org/legacy/
#    user: nyuccl
#    password:
#      secure: h8nh6ooykI7eniajVkE/MYxZgyZoxcKRODhFWUwjlSHRmUV2tW/n2i/4MYJvMQXqiBgO64nOPmNhNH0mhYY+GbwyinAThRn3xhPIUfO8tV+edpzlzSwnGT+xSRINoUaGZfrs5UqCPVS7Ff5EB4SYRfrYBoV2VA5sx1XxoKKPkU4=
#    on:
#      tags: false
#      branch: master

    # production pypi
    provider: pypi
    user: nyuccl
    password:
      secure: h8nh6ooykI7eniajVkE/MYxZgyZoxcKRODhFWUwjlSHRmUV2tW/n2i/4MYJvMQXqiBgO64nOPmNhNH0mhYY+GbwyinAThRn3xhPIUfO8tV+edpzlzSwnGT+xSRINoUaGZfrs5UqCPVS7Ff5EB4SYRfrYBoV2VA5sx1XxoKKPkU4=
    skip_existing: true
    on:
      tags: true
      branch: master
back to top