Skip to content

Commit

Permalink
Issue #2: add a simple CI config to run tests on Windows and Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
dzhoshkun committed Sep 6, 2019
1 parent 961894d commit 990bec9
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
stages:
- test

.test_base_task: &test_base_task
script:
- pytest

test:windows:
<<: *test_base_task
tags:
- gift-hopper

test:linux:
<<: *test_base_task
tags:
- gift-little

0 comments on commit 990bec9

Please sign in to comment.