Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
Tufuwu committed Jan 19, 2025
1 parent 776db03 commit cc564f1
Show file tree
Hide file tree
Showing 150 changed files with 3,882 additions and 17,613 deletions.
2 changes: 2 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# These are supported funding model platforms
liberapay: bmuller
30 changes: 30 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
name: Bug report
about: Create an issue report to help us improve

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. OSX]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]
- Python Version [e.g. 3.6.6]

**Additional context**
Add any other context about the problem here.
33 changes: 13 additions & 20 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,17 @@
name: Tufuwu/test2
on:
push:
branches:
- "**/*"
pull_request:
name: ci
on: push

jobs:
test:
runs-on: # this agent type is not supported: [[{"dist"=>"Xenial"}]]
ubuntu-20.04
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.6', '3.8', '3.9']
steps:
- name: checkout
uses: actions/[email protected]
- uses: actions/[email protected]
with:
python-version: '3.7'
- run: cd ~/
- run: wget https://raw.githubusercontent.com/enjoy-digital/litex/master/litex_setup.py
- run: python3 litex_setup.py init install --user
- run: cd ${{ github.workspace }}
- run: python3 setup.py install --user
- run: cd ${{ github.workspace }}
- run: python setup.py test
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- run: pip install -r dev-requirements.txt
- run: pip install .
- run: pytest
98 changes: 10 additions & 88 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,89 +1,11 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# 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/
*.pickle
*.pid
_trial_temp
apidoc
*.pyc
build
dist
kademlia.egg-info
docs/_build
.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/

# IPython Notebook
.ipynb_checkpoints

# pyenv
.python-version

# celery beat schedule file
celerybeat-schedule

# dotenv
.env

# virtualenv
venv/
ENV/

# Spyder project settings
.spyderproject

# Rope project settings
.ropeproject
.coverage.*
Loading

0 comments on commit cc564f1

Please sign in to comment.