Completed
Push — develop ( 604c57...dfb4a1 )
by Jace
8s
created

coveragespace/tests/test_services.py (1 issue)

1
# pylint: disable=missing-docstring,unused-variable,unused-argument,expression-not-assigned,singleton-comparison
0 ignored issues
show
Bad option value 'singleton-comparison'
Loading history...
2
3
from expecter import expect
4
5
from coveragespace import services
6
7
8
def describe_detected():
9
10
    def when_off_ci(monkeypatch):
11
        monkeypatch.delenv('TRAVIS', raising=False)
12
        monkeypatch.delenv('APPVEYOR', raising=False)
13
14
        expect(services.detected()) == False
15
16
    def when_on_ci(monkeypatch):
17
        monkeypatch.setenv('TRAVIS', 'true')
18
19
        expect(services.detected()) == True
20