YAML-based configuration for initializing Git repositories for unit testing
Project description
repo-smith
YAML-based configuration for Git repository initialization for unit testing
Installation
pip install -U repo-smith
Usage
Create a new configuration file (following the specification).
# File path: tests/specs/basic_spec.yml
name: Basic spec
description: Starting basic spec
initialization:
steps:
- name: Create filea.txt
type: new-file
filename: filea.txt
contents: |
Hello world
- name: Add filea.txt
type: add
files:
- filea.txt
- name: Initial commit
type: commit
message: Initial commit
id: initial-commit
- name: v0 tag
type: tag
tag-name: v0
Create a unit test accordingly.
from repo_smith.initialize_repo import initialize_repo
from git import Repo
def test_dummy():
repo_initializer = initialize_repo("test/specs/basic_spec.yml")
with repo_initializer.initialize() as repo:
# All unit testing code for the dummy repository goes here
print(repo)
For more use cases of repo-smith, refer to:
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
repo_smith-0.1.0.tar.gz
(10.0 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file repo_smith-0.1.0.tar.gz.
File metadata
- Download URL: repo_smith-0.1.0.tar.gz
- Upload date:
- Size: 10.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1866c2e13458c271daedf62c27ddedcfa4e46380094e3cf135d4d23f03fdaaee
|
|
| MD5 |
31a11028da3ebf306c511688481cea7a
|
|
| BLAKE2b-256 |
98155f3bb5eb6e5ed7dda11c69ee47a56ba09a252718296ace7b1dddd01e5a2e
|
File details
Details for the file repo_smith-0.1.0-py3-none-any.whl.
File metadata
- Download URL: repo_smith-0.1.0-py3-none-any.whl
- Upload date:
- Size: 8.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b7e365418810ed85ecd89da40a2fc41b2d36e891038bb024c65d77997228551
|
|
| MD5 |
23abc5383c419db456e29426e530f8f5
|
|
| BLAKE2b-256 |
7f10330afca28a4e80af3679d89e88ea5dfb8033f29059cb0f4a5190b7a16652
|