We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e668f6d commit bf367bdCopy full SHA for bf367bd
.github/workflows/ci_pipeline.yml
@@ -24,8 +24,8 @@ jobs:
24
- name: Install dependencies
25
run: |
26
python -m pip install --upgrade pip
27
- if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
+ pip install .
28
29
- # - name: Run tests
30
- # run: |
31
- # pytest # or replace with your testing command
+ - name: Run tests
+ run: |
+ pytest # or replace with your testing command
src/maxplotlib/tests/test_canvas.py
@@ -1,6 +1,7 @@
1
2
def test():
3
- import maxplotlib.canvas.
+ import maxplotlib.canvas.canvas
4
+ import maxplotlib.subfigure.line_plot
5
6
if __name__ == '__main__':
7
test()
0 commit comments