Skip to content

Commit 3a27f8e

Browse files
committed
Fixed CI checks
1 parent 61f8298 commit 3a27f8e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.circleci/config.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ jobs:
2727
name: check code
2828
command: |
2929
. venv/bin/activate
30-
python -m compileall pyodoo samples
31-
python -m pycodestyle pyodoo samples
32-
python -m flake8 pyodoo samples
30+
python -m compileall pyodoo
31+
python -m pycodestyle pyodoo
32+
python -m flake8 pyodoo
3333
python -m build --outdir=dist .
3434
python -m pip install --verbose dist/*.whl
3535
python -m pip list

.travis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ python:
44
install:
55
- pip install -r requirements_ci.txt
66
script:
7-
- python -m compileall pyodoo samples
8-
- python -m pycodestyle pyodoo samples
9-
- python -m flake8 pyodoo samples
7+
- python -m compileall pyodoo
8+
- python -m pycodestyle pyodoo
9+
- python -m flake8 pyodoo
1010
- python -m build --outdir=dist .
1111
- python -m pip install --verbose dist/*.whl
1212
- python -m pip list

0 commit comments

Comments
 (0)