Skip to content

Commit

Permalink
Remove ignored files
Browse files Browse the repository at this point in the history
  • Loading branch information
Aviksaikat committed Oct 8, 2023
1 parent ee20598 commit e8e73be
Show file tree
Hide file tree
Showing 11 changed files with 656 additions and 227 deletions.
2 changes: 1 addition & 1 deletion .build/ENS.json

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion .build/__local__.json

This file was deleted.

156 changes: 73 additions & 83 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,111 +10,101 @@ concurrency:
cancel-in-progress: true

jobs:
linting:
runs-on: ubuntu-latest
linting:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
steps:
- uses: actions/checkout@v3

- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"

- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install .[lint]
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install .[lint]
- name: Run Black
run: black --check .
- name: Run Black
run: black --check .

- name: Run isort
run: isort --check-only .
- name: Run isort
run: isort --check-only .

- name: Run flake8
run: flake8 .
- name: Run flake8
run: flake8 .

- name: Run mdformat
run: mdformat . --check
- name: Run mdformat
run: mdformat . --check

type-check:
runs-on: ubuntu-latest
type-check:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
steps:
- uses: actions/checkout@v3

- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"

- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install .[lint,test]
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install .[lint,test]
- name: Run MyPy
run: mypy .
- name: Run MyPy
run: mypy .

functional:
runs-on: ${{ matrix.os }}
functional:
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest, macos-latest] # eventually add `windows-latest`
python-version: ["3.10", "3.11"]
strategy:
matrix:
os: [ubuntu-latest, macos-latest] # eventually add `windows-latest`
python-version: ["3.9", "3.10", "3.11"]

env:
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# env:
# GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}

steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '^1.20.7'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
# pip uninstall eth-ape --yes
pip install .[test]
- name: Install Geth
uses: gacts/install-geth-tools@v1
with:
version: 1.12.2
- name: Run Tests
run: pytest

- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip uninstall eth-ape --yes
pip install .[test]
fuzzing:
runs-on: ubuntu-latest

- name: Run Tests
run: pytest -m "not fuzzing" -s --cov=src -n auto --dist loadgroup
strategy:
fail-fast: true

fuzzing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

strategy:
fail-fast: true
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"

steps:
- uses: actions/checkout@v3
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install .[test]
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"

- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install .[test]
- name: Run Tests
run: pytest -m "fuzzing" --no-cov -s
- name: Run Tests
run: pytest
2 changes: 1 addition & 1 deletion AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
Contributors
============

* SAIKAT KARMAKAR <[email protected]>
* SAIKAT KARMAKAR <[email protected]>
4 changes: 1 addition & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,9 +242,7 @@

# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
("index", "user_guide.tex", "fds_py Documentation", "SAIKAT KARMAKAR", "manual")
]
latex_documents = [("index", "user_guide.tex", "fds_py Documentation", "SAIKAT KARMAKAR", "manual")]

# The name of an image file (relative to this directory) to place at the top of
# the title page.
Expand Down
Loading

0 comments on commit e8e73be

Please sign in to comment.