webssh

Web based ssh client https://github.com/huashengdun/webssh webssh.huashengdun.org/
git clone http://git.hanabi.in/repos/webssh.git
Log | Files | Refs | README | LICENSE

.travis.yml (345B)


      1 dist: xenial
      2 language: python
      3 
      4 python:
      5   - "2.7"
      6   - "3.4"
      7   - "3.5"
      8   - "3.6"
      9   - "3.7"
     10   - "3.8"
     11 
     12 install:
     13   - pip install -r requirements.txt
     14   - pip install 'pytest>=4.6' pytest-cov codecov flake8
     15   - if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pip install mock; fi
     16 
     17 script:
     18   - pytest --cov=webssh
     19   - flake8
     20 
     21 after_success:
     22   - codecov