Conversation
…les, and integration tests, while updating the .gitignore to exclude new generated files. This cleanup enhances project organization and reduces clutter.
… essential commands in CLAUDE.md, streamlined Makefile for dependency management using pip, and revised pyproject.toml to reflect minimal dependencies and Python version compatibility. Enhanced README.md to clarify usage and features, focusing on .na file testing. Removed unnecessary documentation files.
- Add natest/__init__.py and natest/cli.py to fix package installation - Update Makefile to prefer uv with pip fallback for faster dependency management - Modernize pyproject.toml with hatchling build system and uv-style dependencies - Add explicit version constraints and enhanced tool configurations - Include uv-specific configurations and workspace support
- Introduced Dana test discovery functionality to locate .na files based on specified patterns. - Added execution capabilities for discovered test files using the existing Dana runtime. - Implemented a command-line interface for running tests with options for verbosity and discovery-only mode. - Created a reporting system to format and display test results, including pass/fail status and detailed output. - Added unit tests for the discovery functionality to ensure correct behavior and pattern matching. - Included example Dana test files for validation of the testing framework.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces several configuration, documentation, and community-related updates for the Natest project. The changes include the addition of configuration files for linting and pre-commit hooks, comprehensive documentation for development and testing workflows, and updates to community and contribution guidelines. Below are the most important changes grouped by theme:
Configuration Updates
.markdownlint.yamlto configure markdown linting rules, disabling most rules except for enforcing a single top-level heading (MD025)..pre-commit-config.yamlto define pre-commit hooks for YAML checks, JSON validation, and other tasks, including a custom hook to make certain files read-only..ruff.tomlto configure linting and formatting rules for Python code, including exclusions and ignored error codes.Documentation Enhancements
CLAUDE.md, a detailed guide for Natest development, covering coding standards, testing workflows, error handling, and best practices for simplicity and incremental complexity.CONTRIBUTING.mdto reflect Natest-specific contribution guidelines, replacing references to OpenSSM.Community and Project Guidelines
CODE_OF_CONDUCT.mdfile with a new community-focused notice inCOMMUNITY.md, emphasizing values like attribution, contributions, and commercial support for Natest. [1] [2]---