Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

.travis.yml 249 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  1. sudo: false
  2. language: python
  3. install:
  4. - make
  5. - pip install coveralls
  6. script:
  7. - make isort-check
  8. - make flake8
  9. cache: pip
  10. jobs:
  11. include:
  12. - stage: test
  13. python: 3.6
  14. script:
  15. - make coverage
  16. after_success:
  17. - coveralls
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...