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.

Issues (284)

tests/test_cli.py (8 issues)

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
Unable to import 'pytest'
Loading history...
The import pytest seems to be unused.
Loading history...
5
from expecter import expect
0 ignored issues
show
Unable to import 'expecter'
Loading history...
Unused expect imported from expecter
Loading history...
6
7
from click.testing import CliRunner
0 ignored issues
show
Unable to import 'click.testing'
Loading history...
Unused CliRunner imported from click.testing
Loading history...
8
9
from taskjuggler_python.tjpy_client import main
0 ignored issues
show
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
Trailing newlines
Loading history...
22