We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39e3ede commit 847803bCopy full SHA for 847803b
.github/workflows/CI.yml
@@ -22,6 +22,9 @@ jobs:
22
python -m pip install --upgrade pip
23
pip install -r requirements-dev.txt
24
pip install robotframework==${{ matrix.rf-version }}
25
+ - name: Run flake8
26
+ run: |
27
+ flake8 --max-line-length=110 src/
28
- name: Run unit tests
29
run: |
30
python utest/run.py
requirements-dev.txt
@@ -1,3 +1,4 @@
1
pytest
2
pytest-cov
3
robotstatuschecker
4
+flake8
src/robotlibcore.py
@@ -28,6 +28,7 @@
def keyword(name=None, tags=()):
if callable(name):
return keyword()(name)
31
+
32
def decorator(func):
33
func.robot_name = name
34
func.robot_tags = tags
0 commit comments