mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 16:34:47 +01:00
forgot to skip tests
This commit is contained in:
parent
34b39f3dc1
commit
a86b5c3a2e
1 changed files with 2 additions and 0 deletions
|
@ -132,6 +132,7 @@ def test_binop_minus():
|
|||
def test_binop_times():
|
||||
yield check_ast, '42 * 65'
|
||||
|
||||
@skip_if(VER_MAJOR_MINOR < VER_3_5)
|
||||
def test_binop_matmult():
|
||||
yield check_ast, 'x @ y', False
|
||||
|
||||
|
@ -855,6 +856,7 @@ def test_sub_eq():
|
|||
def test_times_eq():
|
||||
yield check_stmts, 'x = 42; x *= 2'
|
||||
|
||||
@skip_if(VER_MAJOR_MINOR < VER_3_5)
|
||||
def test_matmult_eq():
|
||||
yield check_stmts, 'x @= y', False
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue