From 3f26589bf1829ce9f977aee013688de05b56ae2e Mon Sep 17 00:00:00 2001 From: rocky Date: Wed, 4 Apr 2018 22:43:19 -0400 Subject: [PATCH] More testing --- Makefile | 4 ++-- pytest/test_grammar.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index b66f5580..33b13449 100644 --- a/Makefile +++ b/Makefile @@ -29,12 +29,12 @@ check-short: pytest # Note for 2.6 use <=3.0.1 see requirements-dev.txt #: Tests for Python 2.7, 3.3 and 3.4 -check-2.6 check-2.7 check-3.3 check-3.4: pytest +check-2.6 check-2.7 check-3.3 check-3.4 check-3.5: pytest $(MAKE) -C test $@ #: Tests for Python 3.2 and 3.5 - pytest doesn't work here # Or rather 3.5 doesn't work not on Travis -check-3.0 check-3.1 check-3.2 check-3.5 check-3.6: +check-3.0 check-3.1 check-3.2 check-3.6: $(MAKE) -C test $@ check-3.7: pytest diff --git a/pytest/test_grammar.py b/pytest/test_grammar.py index aebbd463..e492218f 100644 --- a/pytest/test_grammar.py +++ b/pytest/test_grammar.py @@ -50,7 +50,7 @@ def test_grammar(): unused_rhs.add('call') if PYTHON_VERSION == 3.5: expect_right_recursive.add((('l_stmts', - ('lastl_stmt', 'COME_FROM', 'l_stmts')))) + ('lastl_stmt', 'come_froms', 'l_stmts')))) pass pass else: