Skip to content

Commit

Permalink
Merge pull request #12 from qtc-de/develop
Browse files Browse the repository at this point in the history
Fix typo in tricot.py
  • Loading branch information
qtc-de authored Jun 11, 2021
2 parents 96b5aea + 10327e7 commit 4642df2
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [1.4.2] - June 11, 2021

### Changed

* Fix typo within ``tricot.py`` that caused an error when using the ``--tester`` option


## [1.4.1] - May 28, 2021

### Changed
Expand Down
2 changes: 1 addition & 1 deletion bin/tricot
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import tricot
import argparse


parser = argparse.ArgumentParser(description='''tricot v1.4.1 - a trivial command tester that allows you to verify that certain
parser = argparse.ArgumentParser(description='''tricot v1.4.2 - a trivial command tester that allows you to verify that certain
commands or executables behave as expected. It uses .yml files for test
definitions and can be used from the command line or as a python library.''')

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
url='https://github.com/qtc-de/tricot',
name='tricot',
author='Tobias Neitzel (@qtc_de)',
version='1.4.1',
version='1.4.2',
author_email='',

description='Trivial Command Testser',
Expand Down
2 changes: 1 addition & 1 deletion tricot/tricot.py
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ def run_childs(self, testers: list[str] = (), numbers: list[str] = (), exclude:
try:

if self.name in testers:
tester.run(numbers=numbers, exluce=exclude, hotplug_variables=hotplug_variables)
tester.run(numbers=numbers, exclude=exclude, hotplug_variables=hotplug_variables)

else:
tester.run(testers, numbers, exclude, hotplug_variables)
Expand Down

0 comments on commit 4642df2

Please sign in to comment.