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.
Completed
Push — master ( 93c974...359a3c )
by
unknown
02:27 queued 01:11
created

tests/unit_tests/test_player_service.py (1 issue)

1
import pytest
2
3
from unittest import mock
4
5
from server.player_service import PlayerService
0 ignored issues
show
Unable to import 'server.player_service' (invalid syntax (<string>, line 97))

This can be caused by one of the following:

1. Missing Dependencies

This error could indicate a configuration issue of Pylint. Make sure that your libraries are available by adding the necessary commands.

# .scrutinizer.yml
before_commands:
    - sudo pip install abc # Python2
    - sudo pip3 install abc # Python3
Tip: We are currently not using virtualenv to run pylint, when installing your modules make sure to use the command for the correct version.

2. Missing __init__.py files

This error could also result from missing __init__.py files in your module folders. Make sure that you place one file in each sub-folder.

Loading history...
6
7
@pytest.fixture
8
def player_service(mock_db_pool):
9
    return mock.create_autospec(PlayerService(mock_db_pool))
10