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.
Test Failed
Push — master ( e3a209...bb2a36 )
by Juan Jose
01:39
created

Route4MeAddressesTests   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
dl 0
loc 10
rs 10
c 1
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A test_addresses_params() 0 5 1
1
import unittest
2
3
from route4me.exceptions import ParamValueException
4
5
from tests.base import Route4MeAPITestSuite
6
7
8
class Route4MeAddressesTests(Route4MeAPITestSuite):
9
    """
10
    Route4Me Addresses Tests
11
    """
12
13
    def test_addresses_params(self):
14
        addresses = self.route4me.address
15
        self.assertRaises(ParamValueException,
16
                          addresses.add_address,
17
                          address='754 5th Ave New York, NY 10019')
18
19
20
if __name__ == '__main__':
21
    unittest.main()