Skip to content

Commit 2492b82

Browse files
committed
Test improvement
1 parent 94cd338 commit 2492b82

6 files changed

+22
-3244
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.idea
22
vendor/
3-
*.cache
3+
composer.lock
4+
*.cache

.travis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
language: php
2-
dist: trusty
32
php:
43
- '7.1'
54
- '7.2'
65
- '7.3'
6+
- '7.4'
77
install:
8-
- composer update
8+
- composer install
99
script:
1010
- ./vendor/bin/phpunit --coverage-clover ./tests/Logs/clover.xml
1111
after_script:
12-
- php vendor/bin/php-coveralls -v
12+
- php vendor/bin/php-coveralls -v

composer.json

+5
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,10 @@
2525
"psr-4": {
2626
"DivineOmega\\FileSync\\": "src/"
2727
}
28+
},
29+
"autoload-dev": {
30+
"psr-4": {
31+
"DivineOmega\\FileSync\\Tests\\": "tests/Integration/"
32+
}
2833
}
2934
}

0 commit comments

Comments
 (0)