Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add pipeline for tests example #1

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Open

Commits on Jan 26, 2023

  1. Configuration menu
    Copy the full SHA
    fa598ac View commit details
    Browse the repository at this point in the history
  2. Fix invalid pyproject.toml file and move to setup.cfg (openai#201)

    The `[project]` section of a `pyproject.toml` file *has* to include both
    a `name` and a `version`, that we were missing.
    
    However, rather than adding more stuff to `pyproject.toml`, I've moved
    the license info to the setup file and pointed `pyproject.toml` to use
    `setuptools` for building (the `pyproject.toml` file is really only
    needed to integrated with `black`, that doesn't support setup files...)
    
    While I was at it I decided to migrate to a `setup.cfg` file rather than
    `setup.py` since its declaritive config is usally preferred these days
    (and it's a bit easier to load from version/license files than with a
    `setup.py` file).
    ddeville authored Jan 26, 2023
    Configuration menu
    Copy the full SHA
    ca2fbac View commit details
    Browse the repository at this point in the history
  3. Bump version (openai#204)

    ddeville authored Jan 26, 2023
    Configuration menu
    Copy the full SHA
    b23ecaf View commit details
    Browse the repository at this point in the history

Commits on Feb 3, 2023

  1. Configuration menu
    Copy the full SHA
    bbc2890 View commit details
    Browse the repository at this point in the history
  2. install extras too

    thejaminator committed Feb 3, 2023
    Configuration menu
    Copy the full SHA
    3306f42 View commit details
    Browse the repository at this point in the history
  3. fix extras command

    thejaminator committed Feb 3, 2023
    Configuration menu
    Copy the full SHA
    9d05e47 View commit details
    Browse the repository at this point in the history

Commits on Feb 4, 2023

  1. Configuration menu
    Copy the full SHA
    67976b9 View commit details
    Browse the repository at this point in the history
  2. fix tests directory

    thejaminator committed Feb 4, 2023
    Configuration menu
    Copy the full SHA
    26d462c View commit details
    Browse the repository at this point in the history
  3. fix test

    thejaminator committed Feb 4, 2023
    Configuration menu
    Copy the full SHA
    add117b View commit details
    Browse the repository at this point in the history