Skip to content

Commit

Permalink
Merge pull request #79 from s7clarke10/feature/deprecating_messy_tables
Browse files Browse the repository at this point in the history
Feature/deprecating messy tables
  • Loading branch information
s7clarke10 authored Aug 29, 2024
2 parents 33c6d3b + a25c620 commit 8ddb803
Show file tree
Hide file tree
Showing 29 changed files with 3,731 additions and 1,175 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: CI

on:
pull_request:
push:
branches:
- master

env:
LOGGING_CONF_FILE: ./sample_logging.conf

jobs:
lint_and_test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Start Minio server
run: |
mkdir -p ./minio/data/awesome-bucket
docker compose up -d
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Setup virtual env
run: make venv

- name: Pylinting
run: make pylint

- name: Unit Tests
run: make unit_tests

- name: Integration Tests
run: make integration_tests
110 changes: 102 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,106 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

*.egg-info/
*__pycache__/
*~
# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover
.hypothesis/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

.vscode
.venv
.idea
venv
virtualenvs
# IPython Notebook
.ipynb_checkpoints

# pyenv
.python-version

# celery beat schedule file
celerybeat-schedule

# dotenv
.env

# virtualenv
.venv/
venv/
ENV/

# Pipenv
Pipfile
Pipfile.lock

# Spyder project settings
.spyderproject

# Rope project settings
.ropeproject

.pypirc

# PyCharm
.idea/

# tap config and property files
config.json
properties.json

# minio
minio/
Loading

0 comments on commit 8ddb803

Please sign in to comment.