Skip to main content

GUI equipped Test Framework

Project description

Eightest Test Runner

alt text

Overview

Eightest is self made test runner written in Python that offers intuitive GUI in order to collect and execute tests suites.

Installation

In order to install use this command: pip install eightest

Features:

  • (WIP) Graphical User Interface
  • Parallel execution of tests
  • Test execution time
  • Custom tags
  • (WIP) Automatic scheduler
  • (WIP) E-mail notifications

Usage

Here is an example of simple Test Suite:

from eightest import TestCase

class TestString(TestCase):

    def before(self):
        # Executed before each test.
        self.text = 'text'

    def test_upper(self):
        assert self.text.upper() == 'TEXT'

    def test_isalpha(self):
        text = 'text'
        assert self.text.isalpha() == True

    def after(self):
        # Executed after each test.

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. Please make sure to update tests as appropriate.

Technologies:

  • Python 3.10.6
  • Django 4.0

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

eightest-0.5.0.tar.gz (161.3 kB view hashes)

Uploaded Source

Built Distribution

eightest-0.5.0-py3-none-any.whl (91.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page