mirror of
https://github.com/nvbn/thefuck.git
synced 2025-02-21 20:38:54 +00:00
#366 Don't make bash history checks in travis-ci, it works incorrectly
This commit is contained in:
parent
cb14aded6b
commit
3fc2efee0f
@ -31,30 +31,34 @@ def proc(request, spawnu, run_without_docker):
|
|||||||
|
|
||||||
@pytest.mark.functional
|
@pytest.mark.functional
|
||||||
@pytest.mark.once_without_docker
|
@pytest.mark.once_without_docker
|
||||||
def test_with_confirmation(proc, TIMEOUT):
|
def test_with_confirmation(proc, TIMEOUT, run_without_docker):
|
||||||
with_confirmation(proc, TIMEOUT)
|
with_confirmation(proc, TIMEOUT)
|
||||||
history_changed(proc, TIMEOUT, u'echo test')
|
if not run_without_docker:
|
||||||
|
history_changed(proc, TIMEOUT, u'echo test')
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.functional
|
@pytest.mark.functional
|
||||||
@pytest.mark.once_without_docker
|
@pytest.mark.once_without_docker
|
||||||
def test_select_command_with_arrows(proc, TIMEOUT):
|
def test_select_command_with_arrows(proc, TIMEOUT, run_without_docker):
|
||||||
select_command_with_arrows(proc, TIMEOUT)
|
select_command_with_arrows(proc, TIMEOUT)
|
||||||
history_changed(proc, TIMEOUT, u'git help')
|
if not run_without_docker:
|
||||||
|
history_changed(proc, TIMEOUT, u'git help')
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.functional
|
@pytest.mark.functional
|
||||||
@pytest.mark.once_without_docker
|
@pytest.mark.once_without_docker
|
||||||
def test_refuse_with_confirmation(proc, TIMEOUT):
|
def test_refuse_with_confirmation(proc, TIMEOUT, run_without_docker):
|
||||||
refuse_with_confirmation(proc, TIMEOUT)
|
refuse_with_confirmation(proc, TIMEOUT)
|
||||||
history_not_changed(proc, TIMEOUT)
|
if not run_without_docker:
|
||||||
|
history_not_changed(proc, TIMEOUT)
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.functional
|
@pytest.mark.functional
|
||||||
@pytest.mark.once_without_docker
|
@pytest.mark.once_without_docker
|
||||||
def test_without_confirmation(proc, TIMEOUT):
|
def test_without_confirmation(proc, TIMEOUT, run_without_docker):
|
||||||
without_confirmation(proc, TIMEOUT)
|
without_confirmation(proc, TIMEOUT)
|
||||||
history_changed(proc, TIMEOUT, u'echo test')
|
if not run_without_docker:
|
||||||
|
history_changed(proc, TIMEOUT, u'echo test')
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.functional
|
@pytest.mark.functional
|
||||||
|
Loading…
x
Reference in New Issue
Block a user