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
5 changes: 3 additions & 2 deletions .github/workflows/run_pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
pip install poetry==2.3.3
poetry check --lock
poetry install --no-interaction

- name: Run tests
run: poetry run pytest tests/
3 changes: 3 additions & 0 deletions docs/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ The format is based on `Keep a Changelog <https://keepachangelog.com/en/1.0.0/>`
Current (Unreleased)
--------------------

- Ignore local AI and planning markdown files. (`#90 <https://github.com/elastic/SWAT/pull/90>`_) [`@terrancedejesus <https://github.com/terrancedejesus>`_]
- Pin Python dependencies to current 3.10-compatible versions and add ``poetry.lock``. (`#91 <https://github.com/elastic/SWAT/pull/91>`_) [`@terrancedejesus <https://github.com/terrancedejesus>`_]
- Refresh ReadTheDocs requirements to the pinned Sphinx versions. (`#92 <https://github.com/elastic/SWAT/pull/92>`_) [`@terrancedejesus <https://github.com/terrancedejesus>`_]
- Initial start of the changelog documentation. (`#70 <https://github.com/elastic/SWAT/pull/70>`_) [`@terrancedejesus <https://github.com/terrancedejesus>`_]
- Added `pytest` to the project and `test_emulation.py` for emulation tests. (`#71 <https://github.com/elastic/SWAT/pull/71>`_) [`@terrancedejesus <https://github.com/terrancedejesus>`_]
- Tuned `Add Admin Roles to User(s)` emulation and added admin directory `rolemanagement` and `user.security` to global scopes. (`#72 <https://github.com/elastic/SWAT/pull/72>`_) [`@terrancedejesus <https://github.com/terrancedejesus>`_]
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Topic :: Security",
"Topic :: Google Workspace",
]

[tool.poetry.dependencies]
Expand Down
Loading