I’m working on a very simple python project and trying to run tests using travis CI
My travis.yml file
language: python
  python:
    - "3.6"
# command to install dependencies
install:
  - pip install -r python/01/requirements.txt
script:
  - cd python/01 && pytest
Configuration showed on travis CI page in my repo, its showing language as ruby instead of python
Idk why