Spaces:
Sleeping
Sleeping
pannman
commited on
Commit
·
2823704
1
Parent(s):
4bc668e
create test_example
Browse files- .github/workflows/pysen-python-app.yaml +0 -8
- .gitignore +3 -1
- source/tests/test_example.py +2 -0
.github/workflows/pysen-python-app.yaml
CHANGED
@@ -39,14 +39,6 @@ jobs:
|
|
39 |
run: |
|
40 |
poetry run isort .
|
41 |
|
42 |
-
- name: Test with pytest
|
43 |
-
run: |
|
44 |
-
ls
|
45 |
-
|
46 |
-
- name: Test with pytest
|
47 |
-
run: |
|
48 |
-
poetry run pytest source/*
|
49 |
-
|
50 |
- name: Test with pytest
|
51 |
run: |
|
52 |
poetry run pytest source/tests/*
|
|
|
39 |
run: |
|
40 |
poetry run isort .
|
41 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
- name: Test with pytest
|
43 |
run: |
|
44 |
poetry run pytest source/tests/*
|
.gitignore
CHANGED
@@ -170,4 +170,6 @@ cython_debug/
|
|
170 |
!/data/**/
|
171 |
!/data/**/.gitkeep
|
172 |
|
173 |
-
.bash_history
|
|
|
|
|
|
170 |
!/data/**/
|
171 |
!/data/**/.gitkeep
|
172 |
|
173 |
+
.bash_history
|
174 |
+
|
175 |
+
.DS_Store
|
source/tests/test_example.py
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
def test_example():
|
2 |
+
assert True
|