mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-23 01:14:31 +02:00
Revert "No need to skip black under Python 3.7 any more"
It turns out the black tests still fail in Travis against that version.
This reverts commit d18687a30a.
This commit is contained in:
parent
fa35cd9afb
commit
8437fe3091
1 changed files with 4 additions and 0 deletions
|
|
@ -7,6 +7,10 @@ import sys
|
|||
code_root = Path(__file__).parent.parent
|
||||
|
||||
|
||||
@pytest.mark.skipif(
|
||||
sys.version_info[:2] > (3, 6),
|
||||
reason="Breaks on 3.7 at the moment, but it only needs to run under one Python version",
|
||||
)
|
||||
def test_black():
|
||||
runner = CliRunner()
|
||||
result = runner.invoke(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue