Skip to content

Commit

Permalink
Introduce systray feature part4
Browse files Browse the repository at this point in the history
  • Loading branch information
redaxmedia committed Jan 8, 2021
1 parent e1fb1cb commit 27ae925
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,28 @@ jobs:
- image: circleci/python:3.7.4-buster
steps:
- checkout
- run: sudo pip install mypy
- run: sudo pip install pillow
- run: sudo pip install pylint
- run: sudo pip install pytest
- run: sudo pip install mypy
- run: sudo pip install requests
- run: pylint bin/chroma-feedback chroma_feedback tests
- run: mypy bin/chroma-feedback chroma_feedback tests
test:
docker:
- image: circleci/python:3.7.4-buster
steps:
- checkout
- run: sudo pip install mock
- run: sudo pip install pillow
- run: sudo pip install pytest
- run: sudo pip install pytest-mock
- run: sudo pip install mock
- run: sudo pip install requests
- run: pytest tests

workflows:
version: 2
lint-and-test:
jobs:
- lint
- test
- test

0 comments on commit 27ae925

Please sign in to comment.