File: .travis.yml

package info (click to toggle)
python-autocommand 2.2.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 236 kB
  • sloc: python: 1,052; sh: 15; makefile: 3
file content (24 lines) | stat: -rw-r--r-- 532 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
language: python
python:
  - '3.7'
  - '3.8'
  - '3.9'
  - '3.10'
  - '3.11'
install:
  - pip install -e .
  - pip install -r test_requirements.txt
script:
  - sh util/test.sh
after_success:
  - coveralls
deploy:
  provider: pypi
  user: Lucretiel
  password:
    secure: kLTVnrjyggnqaGnLAi5M02LDGIC/hfQmdFD+2onZVjRyj3EKYvZ/INz9NtIPgMo4ocixe59LPJI40nORm53ifPiKZs0HikRw7Z/ebzqDXsyShlP4alxd35jXglDV+dRF8yT86UxlLYaUWp5JYODcGKZuMpBGqxu6KD2apq1EILc=
  on:
    tags: true
    python: '3.11'
  distributions: sdist bdist_wheel
sudo: false