Skip to content

Commit 29cba02

Browse files
committed
final ci stuff hopefully (?) and gitignore
1 parent 780734a commit 29cba02

File tree

2 files changed

+260
-1
lines changed

2 files changed

+260
-1
lines changed

.gitignore

Lines changed: 259 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,259 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/linux,emacs,visualstudiocode,python
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=linux,emacs,visualstudiocode,python
3+
4+
### Emacs ###
5+
# -*- mode: gitignore; -*-
6+
*~
7+
\#*\#
8+
/.emacs.desktop
9+
/.emacs.desktop.lock
10+
*.elc
11+
auto-save-list
12+
tramp
13+
.\#*
14+
15+
# Org-mode
16+
.org-id-locations
17+
*_archive
18+
19+
# flymake-mode
20+
*_flymake.*
21+
22+
# eshell files
23+
/eshell/history
24+
/eshell/lastdir
25+
26+
# elpa packages
27+
/elpa/
28+
29+
# reftex files
30+
*.rel
31+
32+
# AUCTeX auto folder
33+
/auto/
34+
35+
# cask packages
36+
.cask/
37+
dist/
38+
39+
# Flycheck
40+
flycheck_*.el
41+
42+
# server auth directory
43+
/server/
44+
45+
# projectiles files
46+
.projectile
47+
48+
# directory configuration
49+
.dir-locals.el
50+
51+
# network security
52+
/network-security.data
53+
54+
55+
### Linux ###
56+
57+
# temporary files which can be created if a process still has a handle open of a deleted file
58+
.fuse_hidden*
59+
60+
# KDE directory preferences
61+
.directory
62+
63+
# Linux trash folder which might appear on any partition or disk
64+
.Trash-*
65+
66+
# .nfs files are created when an open file is removed but is still being accessed
67+
.nfs*
68+
69+
### Python ###
70+
# Byte-compiled / optimized / DLL files
71+
__pycache__/
72+
*.py[cod]
73+
*$py.class
74+
75+
# C extensions
76+
*.so
77+
78+
# Distribution / packaging
79+
.Python
80+
build/
81+
develop-eggs/
82+
downloads/
83+
eggs/
84+
.eggs/
85+
lib/
86+
lib64/
87+
parts/
88+
sdist/
89+
var/
90+
wheels/
91+
share/python-wheels/
92+
*.egg-info/
93+
.installed.cfg
94+
*.egg
95+
MANIFEST
96+
97+
# PyInstaller
98+
# Usually these files are written by a python script from a template
99+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
100+
*.manifest
101+
*.spec
102+
103+
# Installer logs
104+
pip-log.txt
105+
pip-delete-this-directory.txt
106+
107+
# Unit test / coverage reports
108+
htmlcov/
109+
.tox/
110+
.nox/
111+
.coverage
112+
.coverage.*
113+
.cache
114+
nosetests.xml
115+
coverage.xml
116+
*.cover
117+
*.py,cover
118+
.hypothesis/
119+
.pytest_cache/
120+
cover/
121+
122+
# Translations
123+
*.mo
124+
*.pot
125+
126+
# Django stuff:
127+
*.log
128+
local_settings.py
129+
db.sqlite3
130+
db.sqlite3-journal
131+
132+
# Flask stuff:
133+
instance/
134+
.webassets-cache
135+
136+
# Scrapy stuff:
137+
.scrapy
138+
139+
# Sphinx documentation
140+
docs/_build/
141+
142+
# PyBuilder
143+
.pybuilder/
144+
target/
145+
146+
# Jupyter Notebook
147+
.ipynb_checkpoints
148+
149+
# IPython
150+
profile_default/
151+
ipython_config.py
152+
153+
# pyenv
154+
# For a library or package, you might want to ignore these files since the code is
155+
# intended to run in multiple environments; otherwise, check them in:
156+
# .python-version
157+
158+
# pipenv
159+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
160+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
161+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
162+
# install all needed dependencies.
163+
#Pipfile.lock
164+
165+
# poetry
166+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
167+
# This is especially recommended for binary packages to ensure reproducibility, and is more
168+
# commonly ignored for libraries.
169+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
170+
#poetry.lock
171+
172+
# pdm
173+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
174+
#pdm.lock
175+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
176+
# in version control.
177+
# https://pdm.fming.dev/#use-with-ide
178+
.pdm.toml
179+
180+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
181+
__pypackages__/
182+
183+
# Celery stuff
184+
celerybeat-schedule
185+
celerybeat.pid
186+
187+
# SageMath parsed files
188+
*.sage.py
189+
190+
# Environments
191+
.env
192+
.venv
193+
env/
194+
venv/
195+
ENV/
196+
env.bak/
197+
venv.bak/
198+
199+
# Spyder project settings
200+
.spyderproject
201+
.spyproject
202+
203+
# Rope project settings
204+
.ropeproject
205+
206+
# mkdocs documentation
207+
/site
208+
209+
# mypy
210+
.mypy_cache/
211+
.dmypy.json
212+
dmypy.json
213+
214+
# Pyre type checker
215+
.pyre/
216+
217+
# pytype static type analyzer
218+
.pytype/
219+
220+
# Cython debug symbols
221+
cython_debug/
222+
223+
# PyCharm
224+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
225+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
226+
# and can be added to the global gitignore or merged into this file. For a more nuclear
227+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
228+
#.idea/
229+
230+
### Python Patch ###
231+
# Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
232+
poetry.toml
233+
234+
# ruff
235+
.ruff_cache/
236+
237+
# LSP config files
238+
pyrightconfig.json
239+
240+
### VisualStudioCode ###
241+
.vscode/*
242+
!.vscode/settings.json
243+
!.vscode/tasks.json
244+
!.vscode/launch.json
245+
!.vscode/extensions.json
246+
!.vscode/*.code-snippets
247+
248+
# Local History for Visual Studio Code
249+
.history/
250+
251+
# Built Visual Studio Code Extensions
252+
*.vsix
253+
254+
### VisualStudioCode Patch ###
255+
# Ignore all local history of files
256+
.history
257+
.ionide
258+
259+
# End of https://www.toptal.com/developers/gitignore/api/linux,emacs,visualstudiocode,python

tests/test_stuff.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python3
22
#import ssri
33
# import ssri
4-
import ssri_src.ssri as ssri
4+
from src import ssri
55
import sys
66
import filecmp
77
import pytest

0 commit comments

Comments
 (0)