Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 0 additions & 23 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export MOZ_HEADLESS = 1
export GECKODRIVER_LOG = $(shell pwd)/results/geckodriver.log

MINIMUM_COVERAGE = 95
MINIMUM_COVERAGE = 50
FLAKE8_CHECK = flake8 .
MYPY_CHECK = mypy .
TESTS = pytest -vvv --cov --cov-fail-under=$(MINIMUM_COVERAGE) --html results/report.html
Expand Down
2 changes: 2 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Configuration file for Sphinx documentation."""

# -*- coding: utf-8 -*-
#
# pytest-firefox documentation build configuration file, created by
Expand Down
1,049 changes: 1,049 additions & 0 deletions poetry.lock

Large diffs are not rendered by default.

11 changes: 9 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pytest-firefox"
version = "0.1.0"
version = "0.2.0"
description = ""
authors = ["Benjamin Forehand Jr <bforehand@mozilla.com>", "Temidayo Azeez <temidayoazeez032@gmail.com>"]
license = "MIT"
Expand All @@ -16,9 +16,12 @@ flake8-isort = "^6.1.1"
pytest = "^8.3.3"
pytest-cov = "^5.0.0"
pytest-selenium = "^4.1.0"
foxpuppet = "^1.0.5"
foxpuppet = "^1.0.6"
mypy = "^1.14.0"

[tool.poetry.plugins.pytest11]
firefox = "pytest_firefox.pytest_firefox"

[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--cov --cov-report=html"
Expand All @@ -32,6 +35,10 @@ python_version = "3.12"
ignore_missing_imports = true
strict = true

[tool.isort]
known_first_party = ["foxpuppet"]
skip = ["build"]

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
6 changes: 0 additions & 6 deletions setup.cfg

This file was deleted.

40 changes: 0 additions & 40 deletions setup.py

This file was deleted.

28 changes: 0 additions & 28 deletions tox.ini

This file was deleted.