Skip to content

Commit e70e733

Browse files
committed
file update:
.gitignore dependabot.yml run_pytest.yml
1 parent 2263d75 commit e70e733

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33

44
version: 2
55
updates:
6+
# GitHub Actions
7+
- package-ecosystem: "github-actions"
8+
directory: "/"
9+
schedule:
10+
interval: "weekly"
11+
12+
# Python
613
- package-ecosystem: "pip" # See documentation for possible values
714
directory: "/" # Location of package manifests
815
schedule:

.github/workflows/run_pytest.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: AutoTests
22

33
on:
4+
workflow_dispatch:
5+
schedule:
6+
- cron: '0 0 * * 1'
47
push:
58
branches: [ master ]
69
pull_request:

.gitignore

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@ app/.env
88
presentation/money_image_bot.png
99
!create_db.sql
1010
!create_test_db.sql
11-
/develop
12-
/docs
11+
develop
12+
docs
13+
.pytest_cache
14+
csv_tables
1315
### Databases ###
1416
*.sqlite3
1517
*.sqlite

0 commit comments

Comments
 (0)