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
49 changes: 49 additions & 0 deletions .github/ISSUE_TEMPLATE/FeatureRequestTemplate.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
---
name: Feature Request
about: Suggest a new feature for this project
title: '[FEATURE] '
labels: enhancement
assignees: ''

---

## Feature Description
<!-- Provide a clear and concise description of the feature you'd like to see implemented -->


## Value Statement
<!-- Describe the value this feature will bring to the project and its users -->

**As a** [type of user]
**I want** [goal/desire]
**So that** [benefit/value]

<!-- Example:
As a team member
I want to filter issues by priority
So that I can focus on the most critical tasks first
-->


## Acceptance Criteria
<!-- List the specific conditions that must be met for this feature to be considered complete -->

- [ ] <!-- Criterion 1 -->
- [ ] <!-- Criterion 2 -->
- [ ] <!-- Criterion 3 -->

<!-- Example:
- [ ] User can click on a priority filter dropdown
- [ ] Issues are filtered by the selected priority level
- [ ] Filter persists when navigating between pages
- [ ] Clear filter option is available
-->


<!--
## Additional Context

## Possible Implementation

## Dependencies
Optional: List any dependencies or related issues/features -->
30 changes: 15 additions & 15 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
python: '3.13'
tox_env: 'docs'
os: 'ubuntu-latest'
- name: 'py311 (ubuntu)'
python: '3.11'
python_arch: 'x64'
tox_env: 'py311'
os: 'ubuntu-latest'
# - name: 'py311 (ubuntu)'
# python: '3.11'
# python_arch: 'x64'
# tox_env: 'py311'
# os: 'ubuntu-latest'
- name: 'py312 (ubuntu)'
python: '3.12'
python_arch: 'x64'
Expand All @@ -32,16 +32,16 @@ jobs:
python_arch: 'x64'
tox_env: 'py313'
os: 'ubuntu-latest'
- name: 'pypy310 (ubuntu)'
python: 'pypy-3.10'
python_arch: 'x64'
tox_env: 'pypy310'
os: 'ubuntu-latest'
- name: 'pypy311 (ubuntu)'
python: 'pypy-3.11'
python_arch: 'x64'
tox_env: 'pypy311'
os: 'ubuntu-latest'
# - name: 'pypy310 (ubuntu)'
# python: 'pypy-3.10'
# python_arch: 'x64'
# tox_env: 'pypy310'
# os: 'ubuntu-latest'
# - name: 'pypy311 (ubuntu)'
# python: 'pypy-3.11'
# python_arch: 'x64'
# tox_env: 'pypy311'
# os: 'ubuntu-latest'
steps:
- uses: actions/checkout@v5
with:
Expand Down
1 change: 1 addition & 0 deletions docs/reference/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ Reference
:glob:

agh*
pytest_plugin*
11 changes: 11 additions & 0 deletions docs/reference/pytest_plugin.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
agh.pytest_plugin
===

.. testsetup::

from agh.pytest_plugin import *

.. automodule:: agh.pytest_plugin
:members:
:undoc-members:
:show-inheritance:
9 changes: 5 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ classifiers = [
"Intended Audience :: Developers",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
# "Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
# "Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
# "Programming Language :: Python :: 3.10",
# "Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
Expand All @@ -42,11 +42,12 @@ classifiers = [
keywords = [
# eg: "keyword1", "keyword2", "keyword3",
]
requires-python = ">=3.9"
requires-python = ">=3.12"
dependencies = [
"pytest>=8.4.2",
"pytest-shell-utilities>=1.9.7",
"rich>=14.2.0",
"ipython>=9.6.0",
"argcomplete",
"rich-argparse",
]
Expand Down
Loading