GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Push — master ( 82b18e...504084 )
by Andrew
58s
created

describe_conversion()   A

Complexity

Conditions 3

Size

Total Lines 13

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 13
rs 9.4285
cc 3
1
"""Sample integration test module using pytest-describe and expecter."""
2
# pylint: disable=redefined-outer-name,unused-variable,expression-not-assigned,singleton-comparison
3
4
import pytest
0 ignored issues
show
introduced by
Unable to import 'pytest'
Loading history...
Unused Code introduced by
The import pytest seems to be unused.
Loading history...
5
from expecter import expect
0 ignored issues
show
introduced by
Unable to import 'expecter'
Loading history...
Unused Code introduced by
Unused expect imported from expecter
Loading history...
6
7
from click.testing import CliRunner
0 ignored issues
show
introduced by
Unable to import 'click.testing'
Loading history...
Unused Code introduced by
Unused CliRunner imported from click.testing
Loading history...
8
9
from taskjuggler_python.tjpy_client import main
0 ignored issues
show
Unused Code introduced by
Unused main imported from taskjuggler_python.tjpy_client
Loading history...
10
11
12
# @pytest.fixture
13
# def runner():
14
#     return CliRunner()
15
16
17
# def describe_cli():
18
19
#     def describe_conversion():
20
21
0 ignored issues
show
coding-style introduced by
Trailing newlines
Loading history...
22