about summary refs log tree commit diff stats
path: root/.gitattributes
blob: 6b9d6b0bcbde9460adffb9e1a2bc38b06b8799e6 (plain) (blame)
1
2
*.raku linguist-language=Raku
*.rakumod linguist-language=Raku
e>
                  










                                   
 
        
                                     
 
       
                                                                                           
dist: 'xenial'

language: 'python'
jobs:
  include:
    - name: "Python 2.7 no linting"
      python: '2.7'
      env: PY2='TRUE'
    - name: "Python 3"
      python:
        - '3.5'
        - '3.6'
        - '3.7'
        - '3.8'

install:
  - 'pip install -r requirements.txt'

script:
  - 'if [ -z "${PY2}" ]; then make test; else make test_doctest test_pytest test_other; fi'