Skip to content

Commit b68a2cd

Browse files
author
Danielle Bastien
committed
axe-core 3.5.1
add py3.7 up number of tests, update pass test
1 parent 270c8cd commit b68a2cd

File tree

5 files changed

+18
-10
lines changed

5 files changed

+18
-10
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ axe-selenium-python
33

44
axe-selenium-python integrates aXe and selenium to enable automated web accessibility testing.
55

6-
**This version of axe-selenium-python is using axe-core@3.3.2.**
6+
**This version of axe-selenium-python is using axe-core@3.5.1.**
77

88
.. image:: https://img.shields.io/badge/license-MPL%202.0-blue.svg
99
:target: https://github.com/mozilla-services/axe-selenium-python/blob/master/LICENSE.txt

axe_selenium_python/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

axe_selenium_python/tests/test_axe.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ def test_run_axe_sample_page_firefox(firefox_driver):
4040
"""Run axe against sample page and verify JSON output is as expected."""
4141
data = _perform_axe_run(firefox_driver)
4242

43-
assert len(data["inapplicable"]) == 60
43+
assert len(data["inapplicable"]) == 61
4444
assert len(data["incomplete"]) == 0
45-
assert len(data["passes"]) == 7
45+
assert len(data["passes"]) == 6
4646
assert len(data["violations"]) == 8
4747

4848

@@ -51,9 +51,9 @@ def test_run_axe_sample_page_chrome(chrome_driver):
5151
"""Run axe against sample page and verify JSON output is as expected."""
5252
data = _perform_axe_run(chrome_driver)
5353

54-
assert len(data["inapplicable"]) == 60
54+
assert len(data["inapplicable"]) == 61
5555
assert len(data["incomplete"]) == 0
56-
assert len(data["passes"]) == 7
56+
assert len(data["passes"]) == 6
5757
assert len(data["violations"]) == 8
5858

5959

package-lock.json

Lines changed: 9 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27, py36, flake8
2+
envlist = py27, py36, py37, flake8
33
skipsdist = true
44

55
[testenv]

0 commit comments

Comments
 (0)