Skip to content

fluent-qa/qpybase

Folders and files

NameName
Last commit message
Last commit date

Latest commit

e852618 · Dec 15, 2024

History

8 Commits
Dec 13, 2024
Jun 13, 2024
Jun 13, 2024
Dec 13, 2024
Jun 13, 2024
Jun 13, 2024
Dec 13, 2024
Jun 13, 2024
Jun 13, 2024
Jun 13, 2024
Dec 13, 2024
Jun 13, 2024
Dec 13, 2024
Dec 13, 2024
Jun 13, 2024
Jun 13, 2024
Dec 13, 2024
Dec 13, 2024
Dec 13, 2024

Repository files navigation

fluentqa-base

Coverage Report

What is fluentqa-base?

Fluent-QA Python Base Package, include:

  1. BaseDataModel: pydantic model for structured data
  2. builtin tools
  3. configuration tools

Very first steps

Initialize your code

  1. Initialize git inside your repo:
cd fluentqa-base && git init
  1. If you don't have Poetry installed run:
make poetry-download
  1. Initialize poetry and install pre-commit hooks:
make install
make pre-commit-install
  1. Run the codestyle:
make codestyle
  1. Upload initial code to GitHub:
git add .
git commit -m ":tada: Initial commit"
git branch -M main
git remote add origin https://github.com/fluent-qa/fluentqa-base.git
git push -u origin main