-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtasks.py
55 lines (40 loc) · 1.44 KB
/
tasks.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (c) 2023 The sdfascii-examples developers. All rights reserved.
# Project site: https://github.com/matthewrankin/sdfascii-examples
# Use of this source code is governed by a MIT-style license that
# can be found in the LICENSE.txt file for the project.
from invoke import run, task
from unipath import Path
TESTPYPI = "https://testpypi.python.org/pypi"
ROOT_DIR = Path(__file__).ancestor(1)
@task
def lint(ctx):
"""Run flake8 to lint code"""
run("python3 -m flake8")
run("python3 -m mypy create_plot.py")
@task
def freeze(ctx):
# pylint: disable=W0613
"""Freeze the pip requirements using pip-chill"""
run(f"pip-chill > {Path(ROOT_DIR, 'requirements.txt')}")
@task(lint)
def test(ctx):
"""Lint, unit test, and check setup.py"""
run("nose2")
@task
def min(ctx):
"""Create the plot using example data from FRTONMIN.DAT"""
run("python create_plot.py inputs/FRTONMIN.DAT outputs/frtonmin.pdf")
@task
def mid(ctx):
"""Create the plot using example data from FRTONMID.DAT"""
run("python create_plot.py inputs/FRTONMID.DAT outputs/frtonmid.pdf")
@task
def max(ctx):
"""Create the plot using example data from FRTONMAX.DAT"""
run("python create_plot.py inputs/FRTONMAX.DAT outputs/frtonmax.pdf")
@task
def plot1(ctx):
"""Create the plot using example data from HP35670A.DAT"""
run("python create_plot.py inputs/HP35670A.DAT outputs/hp35670A.pdf")