Skip to content

Commit d8b42a5

Browse files
committed
Tests 4 W02
1 parent c81b134 commit d8b42a5

File tree

2 files changed

+72
-0
lines changed

2 files changed

+72
-0
lines changed
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# This workflow will install Python dependencies, run tests and lint with a single version of Python
2+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
3+
4+
name: Week02 Homework
5+
6+
on:
7+
push:
8+
branches: [ "master" ]
9+
paths: ['Week02/**']
10+
pull_request:
11+
branches: [ "master" ]
12+
paths: ['Week02/**']
13+
14+
permissions:
15+
contents: read
16+
17+
jobs:
18+
build:
19+
20+
runs-on: ubuntu-latest
21+
22+
steps:
23+
- uses: actions/checkout@v3
24+
- name: Set up Python 3.12
25+
uses: actions/setup-python@v3
26+
with:
27+
python-version: "3.12"
28+
- name: Install dependencies
29+
run: |
30+
python -m pip install --upgrade pip
31+
pip install flake8 pytest
32+
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
33+
- name: Lint with flake8
34+
run: |
35+
# stop the build if there are Python syntax errors or undefined names
36+
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
37+
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
38+
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
39+
- name: Test with pytest
40+
run: |
41+
pytest -q --tb=no 'Week02/test_types.py'

Week02/test_types.py

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
import os
2+
3+
4+
files = [f for f in os.listdir(os.path.dirname(__file__)) if f.startswith("types")]
5+
for f in files:
6+
exec("import " + f[:-3] + " as " + f[:-3])
7+
print(f"The module {f[:-3]} has been imported.")
8+
9+
10+
def test_names():
11+
for f in files:
12+
assert "my_int" in dir(eval(f[:-3])), "my_int is not defined in " + f[:-3]
13+
assert "my_float" in dir(eval(f[:-3])), "my_float is not defined in " + f[:-3]
14+
assert "my_bool" in dir(eval(f[:-3])), "my_bool is not defined in " + f[:-3]
15+
assert "my_complex" in dir(eval(f[:-3])), (
16+
"my_complex is not defined in " + f[:-3]
17+
)
18+
19+
20+
def test_types():
21+
for f in files:
22+
assert isinstance(eval(f[:-3]).my_int, int), "my_int is not an int in " + f[:-3]
23+
assert isinstance(eval(f[:-3]).my_float, float), (
24+
"my_float is not a float in " + f[:-3]
25+
)
26+
assert isinstance(eval(f[:-3]).my_bool, bool), (
27+
"my_bool is not a bool in " + f[:-3]
28+
)
29+
assert isinstance(eval(f[:-3]).my_complex, complex), (
30+
"my_complex is not a complex in " + f[:-3]
31+
)

0 commit comments

Comments
 (0)